mirror of
https://github.com/github/codeql.git
synced 2026-03-19 14:06:50 +01:00
This PR separates the core cpp packs into `codeql/cpp-queries` and `codeql/cpp-all`. There are very few lines of code changed. Almost all changes are moving files around.
10 lines
302 B
Plaintext
10 lines
302 B
Plaintext
import IRConfiguration
|
|
|
|
/**
|
|
* Overrides the default IR configuration to use sound escape analysis, instead of assuming that
|
|
* variable addresses never escape.
|
|
*/
|
|
class SoundEscapeAnalysisConfiguration extends IREscapeAnalysisConfiguration {
|
|
override predicate useSoundEscapeAnalysis() { any() }
|
|
}
|