Skip to content

Commit e480d92

Browse files
committed
Serialization: try fix for windows
1 parent 575ef5b commit e480d92

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

include/hpp/fcl/serialization/serializable.h

+3
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ struct Serializable {
2020
const Derived& derived() const { return *static_cast<const Derived*>(this); }
2121

2222
public:
23+
template <class Archive>
24+
void serialize(Archive& ar, const unsigned int file_version);
25+
2326
/// \brief Loads a Derived object from a text file.
2427
void loadFromText(const std::string& filename) {
2528
::hpp::fcl::serialization::loadFromText(this->derived(), filename);

0 commit comments

Comments
 (0)