diff options
author | Geenz Linden <geenz@lindenlab.com> | 2022-10-06 15:18:17 -0400 |
---|---|---|
committer | Geenz Linden <geenz@lindenlab.com> | 2022-10-06 15:18:17 -0400 |
commit | db92f9564992b9910b21f3de57a584ccfa199e75 (patch) | |
tree | 04dc727d9b536761042f1d968b36bb07d220f13b /indra/llrender/llvertexbuffer.h | |
parent | be1cdc1aaa67eca71fee8cbbc16b4c85bcbdb258 (diff) |
Switch away from std::string
API expects const char* anyways.
Diffstat (limited to 'indra/llrender/llvertexbuffer.h')
-rw-r--r-- | indra/llrender/llvertexbuffer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llrender/llvertexbuffer.h b/indra/llrender/llvertexbuffer.h index a7e5fddf8c..d6f681e4ca 100644 --- a/indra/llrender/llvertexbuffer.h +++ b/indra/llrender/llvertexbuffer.h @@ -301,7 +301,7 @@ public: void validateRange(U32 start, U32 end, U32 count, U32 offset) const; #ifdef LL_PROFILER_ENABLE_TRACY_OPENGL - void setLabel(std::string label); + void setLabel(const char* label); #endif |