* variable.c (var_set_width): Use new var_set_width function.
[pspp-builds.git] / src / data / missing-values.c
index 725b58c6eea45a9b69c8dbc81219edd3daf24125..c4d40baae13c0c25c23d9bdd3226837a6c438844 100644 (file)
@@ -208,11 +208,11 @@ mv_replace_value (struct missing_values *mv, const union value *v, int idx)
 }
 
 
-
+/* Returns the number of individual (not part of a range) missing
+   values in MV. */
 int
 mv_n_values (const struct missing_values *mv)
 {
-  assert(mv_has_value(mv));
   return mv->type & 3;
 }