mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
14 lines
216 B
Plaintext
14 lines
216 B
Plaintext
/**
|
|
* @name Fields declared volatile
|
|
* @description Finds fields with a 'volatile' modifier.
|
|
* @tags field
|
|
* volatile
|
|
* synchronization
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from Field f
|
|
where f.isVolatile()
|
|
select f
|