File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -50,14 +50,12 @@ namespace dynamicgraph
50
50
51
51
static boost::any cast (std::istringstream& iss);
52
52
53
- DYNAMIC_GRAPH_DLLAPI
54
- static void disp (const boost::any& object, std::ostream& os)
53
+ static void disp (const boost::any& object, std::ostream& os)
55
54
{
56
55
os << boost::any_cast<T> (object) << std::endl;
57
56
}
58
57
59
- DYNAMIC_GRAPH_DLLAPI
60
- static void trace (const boost::any& object, std::ostream& os)
58
+ static void trace (const boost::any& object, std::ostream& os)
61
59
{
62
60
disp (object,os);
63
61
}
@@ -155,15 +153,12 @@ public:
155
153
static void disp( TYPE const & t,std::ostream& os ) DISP \
156
154
static void trace( TYPE const & t,std::ostream& os ) TRACE \
157
155
public: \
158
- DYNAMIC_GRAPH_DLLAPI \
159
156
static boost::any cast_( std::istringstream& stringValue ) { \
160
157
return boost::any_cast<TYPE>(cast (stringValue)); \
161
158
} \
162
- DYNAMIC_GRAPH_DLLAPI \
163
159
static void disp_ ( const boost::any& t,std::ostream& os ) { \
164
160
disp (boost::any_cast<TYPE>(t), os); \
165
161
} \
166
- DYNAMIC_GRAPH_DLLAPI \
167
162
static void trace_ ( const boost::any& t,std::ostream& os ) { \
168
163
trace (boost::any_cast<TYPE>(t),os); \
169
164
} \
You can’t perform that action at this time.
0 commit comments