Files
flatbuffers-bigfoot/include/flatbuffers
Andrew Gunnerson dfe68566e4 Add char * overload for FlatBufferBuilder::CreateString() (#4583)
Without this change, the compiler tries to select the following overload
when CreateString is passed a `char *`:

    template<typename T>
    Offset<String> CreateString(const T &str) {
      return CreateString(str.c_str(), str.length());
    }

which is not valid since char pointers don't have methods.

(Fixes #4579)

Signed-off-by: Andrew Gunnerson <chenxiaolong@cxl.epac.to>
2018-01-08 08:26:19 -08:00
..
2017-12-21 11:45:02 -08:00
2017-12-21 11:45:02 -08:00
2017-12-21 11:45:02 -08:00
2017-12-21 11:45:02 -08:00
2018-01-04 10:01:41 -08:00
2017-12-21 11:45:02 -08:00
2018-01-04 09:09:09 -08:00