C++: Add quotes to improve readability.

This commit is contained in:
Mathias Vorreiter Pedersen
2020-05-28 16:48:48 +02:00
parent 1ef0643b60
commit 7b2c9c5aed

View File

@@ -20,10 +20,10 @@ int parseOctal(string input) {
)
}
/** Gets the number corresponding to the set-user-ID on execute bit in Unix. */
/** Gets the number corresponding to the "set-user-ID on execute bit" in Unix. */
int s_isuid() { result = parseOctal("04000") }
/** Gets the number corresponding to the set-group-ID on execute bit in Unix. */
/** Gets the number corresponding to the "set-group-ID on execute bit" in Unix. */
int s_isgid() { result = parseOctal("02000") }
/** Gets the number corresponding to the sticky bit in Unix. */