Convenience function to get char* from a String returning an empty string on null pointer.
| 726 | // Convenience function to get char* from a String returning an empty string on |
| 727 | // null pointer. |
| 728 | static inline const char *GetCstring(const String *str) { |
| 729 | return str ? str->c_str() : ""; |
| 730 | } |
| 731 | |
| 732 | #ifdef FLATBUFFERS_HAS_STRING_VIEW |
| 733 | // Convenience function to get string_view from a String returning an empty |