json_to_cpp icon indicating copy to clipboard operation
json_to_cpp copied to clipboard

Reserved names

Open oknenavin opened this issue 2 years ago • 0 comments

Just skimmed the readme and spotted these:

  • classes are given the name of their member suffixed with a "_t" => names that ends with "_t" are reserved by POSIX, so in the global namespace for C++
  • identifier names are filtered such that C++ keywords, empty id's, or all number id's are prefixed with _json => names prefixed with '_' are reserved in the global namespace

Hope this helps.

oknenavin avatar Feb 25 '23 20:02 oknenavin