From aff2a877345ed3c2a11956e6d36eb612923deb32 Mon Sep 17 00:00:00 2001 From: Eric Cousineau Date: Mon, 6 May 2019 22:17:57 -0400 Subject: [PATCH] Ensure test_library exports symbols Signed-off-by: Eric Cousineau --- test/test_library.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test_library.cpp b/test/test_library.cpp index b984cfd..3a5c48b 100644 --- a/test/test_library.cpp +++ b/test/test_library.cpp @@ -19,6 +19,7 @@ namespace test_library { +RCPPUTILS_PUBLIC int add_one(int x) { return x + 1;