diff --git a/src/support/docstring.cpp b/src/support/docstring.cpp index 8a59d40d4f..ff716f1e73 100644 --- a/src/support/docstring.cpp +++ b/src/support/docstring.cpp @@ -596,8 +596,8 @@ protected: for (; iit != eit; ++iit) { s += *iit; ++n; - bool true_ok = prefixIs(truename, s); - bool false_ok = prefixIs(falsename, s); + bool true_ok = support::prefixIs(truename, s); + bool false_ok = support::prefixIs(falsename, s); if (!true_ok && !false_ok) { ++iit; ok = false;