Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56b5010 commit cd65e73Copy full SHA for cd65e73
3 files changed
cpp/ql/test/library-tests/ir/range-analysis/SimpleRangeAnalysis_tests.cpp
@@ -1,4 +1,4 @@
1
-template<typename T> void range(T);
+#include "test_util.h"
2
3
struct List {
4
struct List* next;
cpp/ql/test/library-tests/ir/range-analysis/test.cpp
-template<typename T> void range(T value);
int f1(int x, int y) {
if (x < 500) {
if (x > 400) {
cpp/ql/test/library-tests/ir/range-analysis/test_util.h
@@ -0,0 +1 @@
+template<typename T> void range(T value);
0 commit comments