mirror of
https://github.com/ocornut/imgui.git
synced 2024-11-24 05:19:02 +08:00
ImStrv: allow constructing from two null pointers.
This commit is contained in:
parent
23d4d10c4d
commit
744ea341c4
2
imgui.h
2
imgui.h
@ -322,7 +322,7 @@ struct ImStrv
|
|||||||
const char* End;
|
const char* End;
|
||||||
ImStrv() { Begin = End = NULL; }
|
ImStrv() { Begin = End = NULL; }
|
||||||
ImStrv(const char* b) { Begin = b; End = b ? b + strlen(b) : NULL; }
|
ImStrv(const char* b) { Begin = b; End = b ? b + strlen(b) : NULL; }
|
||||||
ImStrv(const char* b, const char* e){ Begin = b; End = e ? e : b + strlen(b); }
|
ImStrv(const char* b, const char* e){ Begin = b; End = e ? e : b ? b + strlen(b) : NULL; }
|
||||||
inline size_t length() const { return (size_t)(End - Begin); }
|
inline size_t length() const { return (size_t)(End - Begin); }
|
||||||
inline bool empty() const { return Begin == End; } // == "" or == NULL
|
inline bool empty() const { return Begin == End; } // == "" or == NULL
|
||||||
inline operator bool() const { return Begin != NULL; } // return true when valid ("" is valid, NULL construction is not)
|
inline operator bool() const { return Begin != NULL; } // return true when valid ("" is valid, NULL construction is not)
|
||||||
|
Loading…
Reference in New Issue
Block a user