mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
13 lines
198 B
Plaintext
13 lines
198 B
Plaintext
/**
|
|
* @name Variable declared volatile
|
|
* @description Finds variables with a `volatile` modifier
|
|
* @tags variable
|
|
* volatile
|
|
*/
|
|
|
|
import cpp
|
|
|
|
from Variable f
|
|
where f.isVolatile()
|
|
select f
|