X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2Fftacmp%2Ffield_list.h;h=d2a7e0f3d86aba4dc0ace3a4130fa4f29229e326;hb=f6f278dfd4bca7effd6f452d38ce74cf109d41f4;hp=9b0e1d6bf370c8598183af71f98c5f732506697f;hpb=e981e864b812c938d3df8b555b6bb98bb89273e7;p=com%2Fgs-lite.git diff --git a/src/ftacmp/field_list.h b/src/ftacmp/field_list.h index 9b0e1d6..d2a7e0f 100644 --- a/src/ftacmp/field_list.h +++ b/src/ftacmp/field_list.h @@ -29,10 +29,11 @@ public: field_list(xml_t *x); int verify_field(std::string name, std::string type, std::string &err){ - if(fields.count(name) == 0){ - err += "\tCould not find field "+name+" in the field list\n"; - return 1; - } +// Perhaps re-enable this at some point but for now its an annoyance. +// if(fields.count(name) == 0){ +// err += "\tCould not find field "+name+" in the field list\n"; +// return 1; +// } if(fields[name] == "") return 0; if(type_verifier[fields[name]] != type_verifier[type]){