We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 879beb4 + b4b9d61 commit 9a1ddbaCopy full SHA for 9a1ddba
csharp-mode.el
@@ -1200,7 +1200,7 @@ Currently handled:
1200
;; instead of create one.
1201
(c-lang-defconst c-type-modifier-kwds
1202
;; EMCA-344, S?
1203
- csharp '("readonly" "const"))
+ csharp '("readonly" "const" "volatile"))
1204
1205
1206
;; Tue, 20 Apr 2010 16:02
@@ -1873,8 +1873,8 @@ to the beginning of the prior namespace.
1873
(list "field"
1874
(concat bol
1875
access-modifier-list "+"
1876
- ;; fields can be readonly/const
1877
- "\\(?:" (regexp-opt '("readonly" "const")) space "\\)?"
+ ;; fields can be readonly/const/volatile
+ "\\(?:" (regexp-opt '("readonly" "const" "volatile")) space "\\)?"
1878
return-type space
1879
"\\("
1880
generic-identifier
0 commit comments