aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Diaz <dydyam at gmail dot com>2011-03-28 07:06:01 (GMT)
committerMathias Gumz <akira at fluxbox dot org>2011-03-28 07:06:22 (GMT)
commitd28e105075e3ec46515c322ee5dca6967a4cc696 (patch)
treec3d7c9bbcd43f384cdb12407e977609cf83ce81c
parentd4f7f173305523e4659bd8637887385306bbfd56 (diff)
downloadfluxbox-d28e105075e3ec46515c322ee5dca6967a4cc696.zip
fluxbox-d28e105075e3ec46515c322ee5dca6967a4cc696.tar.bz2
compile fix: added <cstdlib> to provide declaration for 'size_t' (gcc-4.6.x likes it that way)
-rw-r--r--src/FbTk/LayerItem.hh1
-rw-r--r--src/FbTk/MacroCommand.hh1
-rw-r--r--src/FbTk/MultLayers.hh1
3 files changed, 3 insertions, 0 deletions
diff --git a/src/FbTk/LayerItem.hh b/src/FbTk/LayerItem.hh
index a4cdd49..ad33451 100644
--- a/src/FbTk/LayerItem.hh
+++ b/src/FbTk/LayerItem.hh
@@ -26,6 +26,7 @@
26#include "Layer.hh" 26#include "Layer.hh"
27#include "NotCopyable.hh" 27#include "NotCopyable.hh"
28#include <vector> 28#include <vector>
29#include <cstdlib> // size_t
29 30
30namespace FbTk { 31namespace FbTk {
31 32
diff --git a/src/FbTk/MacroCommand.hh b/src/FbTk/MacroCommand.hh
index 932ecaf..bce2ce4 100644
--- a/src/FbTk/MacroCommand.hh
+++ b/src/FbTk/MacroCommand.hh
@@ -26,6 +26,7 @@
26#include "RefCount.hh" 26#include "RefCount.hh"
27 27
28#include <vector> 28#include <vector>
29#include <cstdlib> // size_t
29 30
30namespace FbTk { 31namespace FbTk {
31 32
diff --git a/src/FbTk/MultLayers.hh b/src/FbTk/MultLayers.hh
index 62c006f..3da25f6 100644
--- a/src/FbTk/MultLayers.hh
+++ b/src/FbTk/MultLayers.hh
@@ -24,6 +24,7 @@
24#define FBTK_MULTLAYERS_HH 24#define FBTK_MULTLAYERS_HH
25 25
26#include <vector> 26#include <vector>
27#include <cstdlib> // size_t
27 28
28namespace FbTk { 29namespace FbTk {
29 30