File tree Expand file tree Collapse file tree 5 files changed +14
-1
lines changed Expand file tree Collapse file tree 5 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -183,7 +183,7 @@ class ext_ref {
183183 friend struct msgpack ::adaptor::object<msgpack::type::ext_ref>;
184184};
185185
186- ext::ext (ext_ref const & x) {
186+ inline ext::ext (ext_ref const & x) {
187187 // size limit has aleady been checked at ext_ref's constructor
188188 m_data.reserve (x.size () + 1 );
189189
Original file line number Diff line number Diff line change @@ -73,3 +73,9 @@ FOREACH (source_file ${check_PROGRAMS})
7373 ENDIF ()
7474 ENDIF ()
7575ENDFOREACH ()
76+
77+ ADD_EXECUTABLE (
78+ multi_file
79+ multi_file1.cpp multi_file2.cpp
80+ )
81+ ADD_TEST (multi_file multi_file)
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ check_PROGRAMS = \
2323 msgpack_stream \
2424 msgpack_vref \
2525 msgpack_cpp11 \
26+ multi_file \
2627 reference_cpp11 \
2728 reference \
2829 limit \
@@ -88,6 +89,8 @@ raw_SOURCES = raw.cpp
8889
8990iterator_cpp11_SOURCES = iterator_cpp11.cpp
9091
92+ multi_file_SOURCES = multi_file1.cpp multi_file2.cpp
93+
9194boost_fusion_SOURCES = boost_fusion.cpp
9295
9396boost_optional_SOURCES = boost_optional.cpp
Original file line number Diff line number Diff line change 1+ #include < msgpack.hpp>
Original file line number Diff line number Diff line change 1+ #include < msgpack.hpp>
2+
3+ int main () {}
You can’t perform that action at this time.
0 commit comments