Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0767e55 commit d1641cfCopy full SHA for d1641cf
include/behaviortree_cpp/utils/simple_string.hpp
@@ -125,7 +125,7 @@ class SimpleString {
125
std::size_t size;
126
};
127
128
- constexpr static std::size_t CAPACITY = std::max(size_t(15), sizeof(String) - 1);
+ constexpr static std::size_t CAPACITY = 15; // sizeof(String) - 1);
129
constexpr static std::size_t IS_LONG_BIT = 1 << 7;
130
constexpr static std::size_t LONG_MASK = (~std::size_t(0)) >> 1;
131
0 commit comments