aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Enum.h
diff options
context:
space:
mode:
authorFritz Elfert <felfert@to.com>2002-07-14 19:08:08 +0000
committerFritz Elfert <felfert@to.com>2002-07-14 19:08:08 +0000
commit28e01b8c6a137a9e98d95689be3d3d72be18d9d7 (patch)
treef011d3dba1f05cc8c08b582ba4b9568d3dfc94af /lib/Enum.h
parent838b2558b635d0ec27785e1280904fdea61bc935 (diff)
downloadplptools-28e01b8c6a137a9e98d95689be3d3d72be18d9d7.tar.gz
plptools-28e01b8c6a137a9e98d95689be3d3d72be18d9d7.tar.bz2
plptools-28e01b8c6a137a9e98d95689be3d3d72be18d9d7.zip
- Non-KDE stuff now builds correctly with gcc3
Diffstat (limited to 'lib/Enum.h')
-rw-r--r--lib/Enum.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Enum.h b/lib/Enum.h
index df91aa3..ba410f9 100644
--- a/lib/Enum.h
+++ b/lib/Enum.h
@@ -312,7 +312,7 @@ name(#EnumName),defaultValue(initWith)
* Writes enumeration's string representation.
*/
template <typename E>
-inline std::ostream& operator << (ostream& out, const Enum<E> &e) {
+inline std::ostream& operator << (std::ostream& out, const Enum<E> &e) {
return out << _(e.toString().c_str());
}