diff options
author | Bernhard Walle <Bernhard.Walle@gmx.de> | 2008-03-25 19:31:47 (GMT) |
---|---|---|
committer | Mathias Gumz <akira at fluxbox dot org> | 2008-03-25 19:59:52 (GMT) |
commit | d300c62ba090a3bfac65a2c8dcc7add1b4cf45b4 (patch) | |
tree | 83da0066b698e085d4a63f2a288d0041af4a8d3d /util/fluxbox-update_configs.cc | |
parent | 173682f8dec2f2255b89c6412c634dcbe60a6b99 (diff) | |
download | fluxbox-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 'util/fluxbox-update_configs.cc')
-rw-r--r-- | util/fluxbox-update_configs.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/util/fluxbox-update_configs.cc b/util/fluxbox-update_configs.cc index 75be474..eb080de 100644 --- a/util/fluxbox-update_configs.cc +++ b/util/fluxbox-update_configs.cc | |||
@@ -48,6 +48,7 @@ | |||
48 | #include <fstream> | 48 | #include <fstream> |
49 | #include <set> | 49 | #include <set> |
50 | #include <map> | 50 | #include <map> |
51 | #include <cstdlib> | ||
51 | #include <list> | 52 | #include <list> |
52 | 53 | ||
53 | using std::cout; | 54 | using std::cout; |
@@ -59,6 +60,8 @@ using std::ofstream; | |||
59 | using std::set; | 60 | using std::set; |
60 | using std::map; | 61 | using std::map; |
61 | using std::list; | 62 | using std::list; |
63 | using std::exit; | ||
64 | using std::getenv; | ||
62 | 65 | ||
63 | string read_file(string filename); | 66 | string read_file(string filename); |
64 | void write_file(string filename, string &contents); | 67 | void write_file(string filename, string &contents); |