Skip to content

Commit 60b40be

Browse files
committed
fix
1 parent 84b139e commit 60b40be

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

include/behaviortree_cpp/behavior_tree.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,7 @@ inline NodeType getType()
9191
}
9292

9393

94-
inline const char* LibraryVersionString() {
95-
return BTCPP_LIBRARY_VERSION;
96-
}
94+
const char* LibraryVersionString();
9795

9896
int LibraryVersionNumber();
9997

src/behavior_tree.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,4 +122,8 @@ int LibraryVersionNumber() {
122122
return number;
123123
}
124124

125+
const char *LibraryVersionString() {
126+
return BTCPP_LIBRARY_VERSION;
127+
}
128+
125129
} // namespace BT

0 commit comments

Comments
 (0)