File tree Expand file tree Collapse file tree 3 files changed +1015
-1
lines changed
Expand file tree Collapse file tree 3 files changed +1015
-1
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,6 @@ class OperatorBlocks : public IBlockSection
7676 static void compileRound (Compiler *compiler);
7777 static void compileMathOp (Compiler *compiler);
7878
79- private:
8079 static unsigned int op_ln (VirtualMachine *vm);
8180 static unsigned int op_log (VirtualMachine *vm);
8281 static unsigned int op_eexp (VirtualMachine *vm);
Original file line number Diff line number Diff line change @@ -29,3 +29,19 @@ target_link_libraries(
2929)
3030
3131gtest_discover_tests(list_blocks_test)
32+
33+ # operator_blocks_test
34+ add_executable (
35+ operator_blocks_test
36+ operator_blocks_test.cpp
37+ )
38+
39+ target_link_libraries (
40+ operator_blocks_test
41+ GTest::gtest_main
42+ GTest::gmock_main
43+ scratchcpp
44+ scratchcpp_mocks
45+ )
46+
47+ gtest_discover_tests(operator_blocks_test)
You can’t perform that action at this time.
0 commit comments