projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ac075b1
)
Make the static instance of None just const.
author
Benjamin Kramer
<benny.kra@googlemail.com>
Fri, 20 Feb 2015 13:16:05 +0000
(13:16 +0000)
committer
Benjamin Kramer
<benny.kra@googlemail.com>
Fri, 20 Feb 2015 13:16:05 +0000
(13:16 +0000)
This way there shouldn't be any unused variable warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230010
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/ADT/None.h
patch
|
blob
|
history
diff --git
a/include/llvm/ADT/None.h
b/include/llvm/ADT/None.h
index c78db78597cc681946a925014ccbb10e5565939e..d69ec17c15f910ce0ea6a6a3ead2d02d93f8eefe 100644
(file)
--- a/
include/llvm/ADT/None.h
+++ b/
include/llvm/ADT/None.h
@@
-20,7
+20,7
@@
namespace llvm {
/// \brief A simple null object to allow implicit construction of Optional<T>
/// and similar types without having to spell out the specialization's name.
enum class NoneType { None };
-
static NoneType
None;
+
const NoneType None =
None;
}
#endif