easy_profiler icon indicating copy to clipboard operation
easy_profiler copied to clipboard

easy/arbitrary_value.h does not include <string>

Open andreyryabov opened this issue 5 years ago • 2 comments

easy_profiler_core/include/easy/arbitrary_value.h:317:66: error: no type named 'string' in namespace 'std'
    inline void setText(const BaseBlockDescriptor*, const ::std::string&, ValueId) {}

can be fixed by

#include <string>
#include <easy/arbitrary_value.h>

andreyryabov avatar Jun 06 '20 18:06 andreyryabov

Hello! Which compiler and OS the error appears?

yse avatar Jun 06 '20 19:06 yse

Apple clang version 11.0.0 (clang-1100.0.33.17) Target: x86_64-apple-darwin19.4.0 Thread model: posix

andreyryabov avatar Jun 06 '20 19:06 andreyryabov