aboutsummaryrefslogtreecommitdiff
path: root/src/FocusableList.cc
diff options
context:
space:
mode:
authorBernhard Walle <Bernhard.Walle@gmx.de>2008-03-25 19:31:47 (GMT)
committerMathias Gumz <akira at fluxbox dot org>2008-03-25 19:59:52 (GMT)
commitd300c62ba090a3bfac65a2c8dcc7add1b4cf45b4 (patch)
tree83da0066b698e085d4a63f2a288d0041af4a8d3d /src/FocusableList.cc
parent173682f8dec2f2255b89c6412c634dcbe60a6b99 (diff)
downloadfluxbox-d300c62ba090a3bfac65a2c8dcc7add1b4cf45b4.zip
fluxbox-d300c62ba090a3bfac65a2c8dcc7add1b4cf45b4.tar.bz2
Fix build with g++ 4.3
This change fixes the build for g++ 4.3. Build verified on openSUSE Factory. Only missing includes and using directives are added.
Diffstat (limited to 'src/FocusableList.cc')
-rw-r--r--src/FocusableList.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/FocusableList.cc b/src/FocusableList.cc
index 258a43b..70f415e 100644
--- a/src/FocusableList.cc
+++ b/src/FocusableList.cc
@@ -31,6 +31,12 @@
31 31
32#include <vector> 32#include <vector>
33 33
34#ifdef HAVE_CSTRING
35 #include <cstring>
36#else
37 #include <string.h>
38#endif
39
34using std::string; 40using std::string;
35using std::vector; 41using std::vector;
36 42