comparison RBTree.hpp @ 40:f711ddb56ae7

Sort up includes.
author Tom Fredrik Blenning Klaussen <bfg@blenning.no>
date Fri, 07 Sep 2012 13:32:33 +0200
parents fda70a362ed5
children e5fa379d4030
comparison
equal deleted inserted replaced
39:f23fa42238dc 40:f711ddb56ae7
1 #ifndef RBTREE_HPP 1 #ifndef RBTREE_HPP
2 #define RBTREE_HPP 2 #define RBTREE_HPP
3 3
4 #include "Exception/ValueExistsException.hpp"
5
4 #include <boost/optional.hpp> 6 #include <boost/optional.hpp>
7
5 #include <cmath> 8 #include <cmath>
6 #include "Exception/ValueExistsException.hpp"
7
8
9 9
10 #define CONSISTENCY_CHECKING 1 10 #define CONSISTENCY_CHECKING 1
11 11
12 #if CONSISTENCY_CHECKING 12 #if CONSISTENCY_CHECKING
13 #define RBTREE_ASSERT(X) assert(X) 13 #define RBTREE_ASSERT(X) assert(X)