summaryrefslogtreecommitdiff
path: root/smartptr.h
diff options
context:
space:
mode:
authorEnrico Pisko <enrico.pisko@cinector.com>2016-04-25 10:16:59 +0200
committerEnrico Pisko <enrico.pisko@cinector.com>2016-04-25 10:16:59 +0200
commit90748eb3c232c23d4a07ca30a5abfa7074c76b10 (patch)
tree4ca357245c99475be27cdf23088f40acbb969155 /smartptr.h
parentdfac7ec28b6ef7ee61abda1cb763ccfc4f9e1db1 (diff)
downloadcryptopp-git-90748eb3c232c23d4a07ca30a5abfa7074c76b10.tar.gz
replaced special character which caused warning C4819 with other system encoding
Diffstat (limited to 'smartptr.h')
-rw-r--r--smartptr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/smartptr.h b/smartptr.h
index cbacb79f..8bb32bc0 100644
--- a/smartptr.h
+++ b/smartptr.h
@@ -31,7 +31,7 @@ public:
};
//! \class member_ptr
-//! \brief Pointer that overloads operator→
+//! \brief Pointer that overloads operator ->
//! \tparam T class or type
//! \details member_ptr is used frequently in the library to avoid the issues related to
//! std::auto_ptr in C++11 (deprecated) and std::unique_ptr in C++03 (non-existent).