Loki-Astari / ThorsMongo

C++ MongoDB API and BSON/JSON Serialization library
GNU General Public License v3.0
316 stars 72 forks source link

VS 2015 Warnings resolved #23

Closed marnef closed 8 years ago

marnef commented 8 years ago

space/comma/colon are char const**, thus the variable seporator should have that type as well.

Loki-Astari commented 8 years ago

Actually:

    static char const*  space[];
    static char const*  comma[];
    static char const*  colon[];

So the type is correct as it stands.