summaryrefslogtreecommitdiff
path: root/src/utils.hh
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2011-09-09 19:24:18 +0000
committerMaxime Coste <frrrwww@gmail.com>2011-09-09 19:24:18 +0000
commit030c5caf0a92c03ec2afca677483044de3bbef56 (patch)
tree055c2ac245445c338ed94321bb56d4154d02dbd8 /src/utils.hh
parent3caf96211085254ab3c42a59ce2c80a4ade3d2d8 (diff)
assert: custom implementation
Diffstat (limited to 'src/utils.hh')
-rw-r--r--src/utils.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/utils.hh b/src/utils.hh
index 50297f8d..d495afeb 100644
--- a/src/utils.hh
+++ b/src/utils.hh
@@ -1,6 +1,8 @@
#ifndef utils_hh_INCLUDED
#define utils_hh_INCLUDED
+#include "exception.hh"
+
#include <memory>
namespace Kakoune
@@ -37,7 +39,6 @@ bool operator== (const std::unique_ptr<T>& lhs, T* rhs)
return lhs.get() == rhs;
}
-
}
#endif // utils_hh_INCLUDED