2
0
mirror of https://github.com/boostorg/log.git synced 2026-02-11 11:52:20 +00:00

Corrected comment.

This commit is contained in:
Andrey Semashev
2015-07-17 03:22:22 +03:00
parent 89701d97c8
commit 21e60917cc

View File

@@ -415,8 +415,8 @@ bool parse_function_name(const char*& begin, const char*& end, bool include_scop
//
// Note that the algorithm should be tolerant to different flavors of the input strings from different compilers, so we can't rely on spaces
// delimiting function names and other elements. Also, the algorithm should behave well in case of the fallback string generated by
// BOOST_CURRENT_FUNCTION (which is "(unknown)" currently). In case of any parsing failure the algorithm should return false, in whic case the
// full original string will be output.
// BOOST_CURRENT_FUNCTION (which is "(unknown)" currently). In case of any parsing failure the algorithm should return false, in which case the
// full original string will be used as the output.
const char* b = begin;
const char* e = end;