]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/graph/exception.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / graph / exception.hpp
index 382d671928eb6f804462163f1c768c7a9d349900..f1f13dcf89b793355c033c99b8993ccf1d807da5 100644 (file)
 
 namespace boost {
 
-    struct bad_graph : public std::invalid_argument {
+    struct BOOST_SYMBOL_VISIBLE bad_graph : public std::invalid_argument {
         bad_graph(const std::string& what_arg)
             : std::invalid_argument(what_arg) { }
     };
 
-    struct not_a_dag : public bad_graph {
+    struct BOOST_SYMBOL_VISIBLE not_a_dag : public bad_graph {
         not_a_dag()
             : bad_graph("The graph must be a DAG.")
         { }
     };
 
-    struct negative_edge : public bad_graph {
+    struct BOOST_SYMBOL_VISIBLE negative_edge : public bad_graph {
         negative_edge()
             : bad_graph("The graph may not contain an edge with negative weight.")
         { }
     };
 
-    struct negative_cycle : public bad_graph {
+    struct BOOST_SYMBOL_VISIBLE negative_cycle : public bad_graph {
         negative_cycle()
             : bad_graph("The graph may not contain negative cycles.")
         { }
     };
 
-    struct not_connected : public bad_graph {
+    struct BOOST_SYMBOL_VISIBLE not_connected : public bad_graph {
         not_connected()
             : bad_graph("The graph must be connected.")
         { }
     };
 
-   struct not_complete : public bad_graph {
+   struct BOOST_SYMBOL_VISIBLE not_complete : public bad_graph {
        not_complete()
            : bad_graph("The graph must be complete.")
        { }