File tree Expand file tree Collapse file tree 6 files changed +4
-64
lines changed Expand file tree Collapse file tree 6 files changed +4
-64
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "cmake.configureOnOpen" : true
2
+ "cmake.configureOnOpen" : true ,
3
+ "files.associations" : {
4
+ "execution" : " cpp"
5
+ }
3
6
}
Original file line number Diff line number Diff line change @@ -5,11 +5,6 @@ set(CMAKE_CXX_STANDARD 17)
5
5
6
6
include_directories (src )
7
7
8
- try_compile (HAVE_EXECUTION ${CMAKE_BINARY_DIR} ${PROJECT_SOURCE_DIR} /src/executiontest.cpp )
9
- if (NOT HAVE_EXECUTION )
10
- message (FATAL_ERROR "Compiler seems to be old, unable to compile this source" )
11
- endif ()
12
-
13
8
add_library (
14
9
${PROJECT_NAME}
15
10
@@ -21,7 +16,6 @@ add_library(
21
16
src/operations/array/map.cpp
22
17
src/operations/array/merge.cpp
23
18
src/operations/array/none.cpp
24
- src/operations/array/reduce.cpp
25
19
src/operations/array/some.cpp
26
20
src/operations/data/missing.cpp
27
21
src/operations/data/missing_some.cpp
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -41,7 +41,6 @@ namespace json_logic
41
41
operations_.insert ({" %" , MAKE_OPERATION (operation_numeric_modulo)});
42
42
43
43
operations_.insert ({" map" , MAKE_OPERATION (operation_array_map)});
44
- operations_.insert ({" reduce" , MAKE_OPERATION (operation_array_reduce)});
45
44
operations_.insert ({" filter" , MAKE_OPERATION (operation_array_filter)});
46
45
operations_.insert ({" all" , MAKE_OPERATION (operation_array_all)});
47
46
operations_.insert ({" none" , MAKE_OPERATION (operation_array_none)});
Original file line number Diff line number Diff line change @@ -73,7 +73,6 @@ namespace json_logic
73
73
json operation_numeric_modulo (const json& values, const json& data);
74
74
75
75
json operation_array_map (const json& values, const json& data);
76
- json operation_array_reduce (const json& values, const json& data);
77
76
json operation_array_filter (const json& values, const json& data);
78
77
json operation_array_all (const json& values, const json& data);
79
78
json operation_array_none (const json& values, const json& data);
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments