fix const correctness
This commit is contained in:
parent
f8c76010fb
commit
a52b260f1b
1 changed files with 1 additions and 1 deletions
|
|
@ -476,7 +476,7 @@ class clutchlog
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
/** Current number of call stack levels to remove from depth display. */
|
/** Current number of call stack levels to remove from depth display. */
|
||||||
const size_t _strip_calls;
|
size_t _strip_calls;
|
||||||
/** Dictionary of level identifier to their string representation. */
|
/** Dictionary of level identifier to their string representation. */
|
||||||
const std::map<level,std::string> _level_word;
|
const std::map<level,std::string> _level_word;
|
||||||
/** Dictionary of level string to their identifier. */
|
/** Dictionary of level string to their identifier. */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue