aboutsummaryrefslogtreecommitdiff
path: root/src/FbAtoms.cc
diff options
context:
space:
mode:
authorrathnor <rathnor>2004-08-31 15:26:40 (GMT)
committerrathnor <rathnor>2004-08-31 15:26:40 (GMT)
commitd17bf39a43a7581773c67d496e4022499d59cd26 (patch)
tree89e964e0e9a207d726e4ffefb88b19c51c591817 /src/FbAtoms.cc
parent6a78695e6ed92f8631b84874dcb754d32fcf99d5 (diff)
downloadfluxbox-d17bf39a43a7581773c67d496e4022499d59cd26.zip
fluxbox-d17bf39a43a7581773c67d496e4022499d59cd26.tar.bz2
add autoconf check for std c++ headers
Diffstat (limited to 'src/FbAtoms.cc')
-rw-r--r--src/FbAtoms.cc8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/FbAtoms.cc b/src/FbAtoms.cc
index de8a9a8..8b2bfb2 100644
--- a/src/FbAtoms.cc
+++ b/src/FbAtoms.cc
@@ -19,13 +19,17 @@
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: FbAtoms.cc,v 1.9 2003/09/24 14:02:25 rathnor Exp $ 22// $Id: FbAtoms.cc,v 1.10 2004/08/31 15:26:38 rathnor Exp $
23 23
24#include "FbAtoms.hh" 24#include "FbAtoms.hh"
25#include "App.hh" 25#include "App.hh"
26 26
27#include <string> 27#include <string>
28#include <cassert> 28#ifdef HAVE_CASSERT
29 #include <cassert>
30#else
31 #include <assert.h>
32#endif
29 33
30using namespace std; 34using namespace std;
31 35