diff options
author | Jeremy Henty <onepoint@starurchin.org> | 2015-04-04 02:32:27 +0100 |
---|---|---|
committer | Jeremy Henty <onepoint@starurchin.org> | 2015-04-04 02:32:27 +0100 |
commit | 1d407d6898e39b5b594688f3ccedbaba921b26d3 (patch) | |
tree | 7d85825307fd2a21774240db1b97639bcd17729f /lout | |
parent | b782494ca659398200902feebb0495a168584a68 (diff) |
Escape "::" strings.
The "::" string has a special meaning for doxygen; it is a reference
to a documented entity so it must be escaped when the string itself is
wanted. The doxygen command "\::" writes a "::" to the output.
This fixes a doxygen warning of the form "warning: explicit link
request to 'foo' could not be resolved".
Diffstat (limited to 'lout')
-rw-r--r-- | lout/identity.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lout/identity.hh b/lout/identity.hh index df42b204..aaaa45b7 100644 --- a/lout/identity.hh +++ b/lout/identity.hh @@ -51,7 +51,7 @@ namespace identity { * \em name should be unique, e.g. the fully qualified class name. * </ul> * - * After this, <i>class</i>::CLASS_ID refers to a number, which denotes the + * After this, <i>class</i>\::CLASS_ID refers to a number, which denotes the * class. (If this is still -1, since the class has not yet been instantiated, * any test will fail, which is correct.) * |