aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-05-17 16:32:33 (GMT)
committerfluxgen <fluxgen>2002-05-17 16:32:33 (GMT)
commitddabec794c5875fc33d06ec370eab0099eaac99b (patch)
tree7a5254754f38c86465d58174f37dd1d5b55ef010
parent160485f469e90d18280396bb5d38d217a8964bea (diff)
downloadfluxbox_pavel-ddabec794c5875fc33d06ec370eab0099eaac99b.zip
fluxbox_pavel-ddabec794c5875fc33d06ec370eab0099eaac99b.tar.bz2
added cassert include
-rw-r--r--src/StringUtil.cc3
-rw-r--r--src/Timer.cc1
2 files changed, 3 insertions, 1 deletions
diff --git a/src/StringUtil.cc b/src/StringUtil.cc
index d6e71b6..9c32e6b 100644
--- a/src/StringUtil.cc
+++ b/src/StringUtil.cc
@@ -19,7 +19,7 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22// $Id: StringUtil.cc,v 1.9 2002/04/08 22:29:45 fluxgen Exp $ 22// $Id: StringUtil.cc,v 1.10 2002/05/17 16:31:34 fluxgen Exp $
23 23
24#include "StringUtil.hh" 24#include "StringUtil.hh"
25 25
@@ -27,6 +27,7 @@
27#include <cstdio> 27#include <cstdio>
28#include <cstdlib> 28#include <cstdlib>
29#include <cctype> 29#include <cctype>
30#include <cassert>
30#include <memory> 31#include <memory>
31 32
32using namespace std; 33using namespace std;
diff --git a/src/Timer.cc b/src/Timer.cc
index cf2733e..876e53f 100644
--- a/src/Timer.cc
+++ b/src/Timer.cc
@@ -31,6 +31,7 @@
31#include "Timer.hh" 31#include "Timer.hh"
32#include <sys/types.h> 32#include <sys/types.h>
33#include <unistd.h> 33#include <unistd.h>
34#include <cassert>
34 35
35//static var 36//static var
36BTimer::TimerList BTimer::m_timerlist; 37BTimer::TimerList BTimer::m_timerlist;