We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b099f0 commit 2e4f203Copy full SHA for 2e4f203
CHANGELOG.md
@@ -1,5 +1,12 @@
1
# scip-clang ChangeLog
2
3
+## v0.2.7 (beta)
4
+
5
+- Adds a visited set to to avoid performing member lookup in the same
6
+ class repeatedly. Also hard-codes iteration limits to 10k for
7
+ potentially infinite loops to avoid timeouts.
8
+ (https://github.com/sourcegraph/scip-clang/pull/416)
9
10
## v0.2.6 (beta)
11
12
- The previous release incorrectly changed the log level of
indexer/Version.h
@@ -15,7 +15,7 @@ constexpr bool debugMode = true;
15
constexpr bool debugMode = false;
16
#endif
17
18
-#define VERSION "0.2.6"
+#define VERSION "0.2.7"
19
#define LLVM_COMMIT \
20
"e0f3110b854a476c16cce7b44472cd7838d344e9" // Keep synced with fetch_deps.bzl
21
0 commit comments