aboutsummaryrefslogtreecommitdiff
path: root/cutl/container
diff options
context:
space:
mode:
Diffstat (limited to 'cutl/container')
-rw-r--r--cutl/container/any.hxx6
-rw-r--r--cutl/container/graph.hxx6
2 files changed, 4 insertions, 8 deletions
diff --git a/cutl/container/any.hxx b/cutl/container/any.hxx
index c8d6308..3a31602 100644
--- a/cutl/container/any.hxx
+++ b/cutl/container/any.hxx
@@ -10,16 +10,14 @@
#include <cutl/exception.hxx>
-#include <cutl/details/export.hxx>
-
namespace cutl
{
namespace container
{
- class LIBCUTL_EXPORT any
+ class any
{
public:
- struct LIBCUTL_EXPORT typing: exception {};
+ struct typing: exception {};
public:
any ()
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