Skip to content

Commit ffaeedf

Browse files
committed
fable: Add fable::schema::Array type for std::array types
1 parent 4b9dab8 commit ffaeedf

File tree

5 files changed

+561
-0
lines changed

5 files changed

+561
-0
lines changed

fable/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ if(BUILD_TESTING)
7474
# find src -type f -name "*_test.cpp"
7575
src/fable/version_test.cpp
7676
src/fable/environment_test.cpp
77+
src/fable/schema/array_test.cpp
7778
src/fable/schema/const_test.cpp
7879
src/fable/schema/custom_test.cpp
7980
src/fable/schema/enum_test.cpp

fable/include/fable/schema.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@
120120
#include <utility> // for move
121121
#include <vector> // for vector<>
122122

123+
#include <fable/schema/array.hpp> // for Array<>
123124
#include <fable/schema/boolean.hpp> // for Boolean
124125
#include <fable/schema/confable.hpp> // for FromConfable
125126
#include <fable/schema/const.hpp> // for Const<>

0 commit comments

Comments
 (0)