aboutsummaryrefslogtreecommitdiff
path: root/cutl/container/graph.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-11-14 15:24:14 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-11-14 15:24:14 +0200
commit44fde85b2496750b78939247d1d19a67c5b3dc71 (patch)
treecb7f87c14037727ddc89bb7499457b5e3207ad98 /cutl/container/graph.hxx
parent7945c1771bbb57125b3e3343fa84bfc314e0f4d4 (diff)
C++11-compatibility fixes and improvements
Diffstat (limited to 'cutl/container/graph.hxx')
-rw-r--r--cutl/container/graph.hxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/cutl/container/graph.hxx b/cutl/container/graph.hxx
index 9c1afe2..3f98c2a 100644
--- a/cutl/container/graph.hxx
+++ b/cutl/container/graph.hxx
@@ -10,14 +10,12 @@
#include <cutl/exception.hxx>
#include <cutl/shared-ptr.hxx>
-#include <cutl/details/export.hxx>
-
namespace cutl
{
namespace container
{
- struct LIBCUTL_EXPORT no_edge: exception {};
- struct LIBCUTL_EXPORT no_node: exception {};
+ struct no_edge: exception {};
+ struct no_node: exception {};
template <typename N, typename E>
class graph