diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-04-14 17:17:51 +0630 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-04-14 17:17:51 +0630 |
commit | 86e9d51ab0b9ed2c5ccd1cf5f06fa3f3448c8f31 (patch) | |
tree | e6e7cf15301538fbe1c925814409d658649ee3db /asm/lexer.cpp | |
parent | 86aca9a596a4c0b7436f3c1169cd3884b9082206 (diff) | |
download | ovm-86e9d51ab0b9ed2c5ccd1cf5f06fa3f3448c8f31.tar.gz ovm-86e9d51ab0b9ed2c5ccd1cf5f06fa3f3448c8f31.tar.bz2 ovm-86e9d51ab0b9ed2c5ccd1cf5f06fa3f3448c8f31.zip |
enum -> enum class in lexer
This makes enum elements scoped which is actually quite useful as I
prefer the namespacing that enum's give in C++.
Diffstat (limited to 'asm/lexer.cpp')
-rw-r--r-- | asm/lexer.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/asm/lexer.cpp b/asm/lexer.cpp index c0ea978..d6c9883 100644 --- a/asm/lexer.cpp +++ b/asm/lexer.cpp @@ -1,8 +1,9 @@ /* Copyright (C) 2024 Aryadev Chavali - * You may distribute and modify this code under the terms of the GPLv2 - * license. You should have received a copy of the GPLv2 license with - * this file. If not, please write to: aryadev@aryadevchavali.com. + * You may distribute and modify this code under the terms of the + * GPLv2 license. You should have received a copy of the GPLv2 + * license with this file. If not, please write to: + * aryadev@aryadevchavali.com. * Created: 2024-04-14 * Author: Aryadev Chavali |