From ca1ba4b280998d54a9668473d8fb35c8fafed377 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Fri, 20 Feb 2015 13:16:05 +0000 Subject: [PATCH] Make the static instance of None just const. This way there shouldn't be any unused variable warnings. llvm-svn: 230010 --- llvm/include/llvm/ADT/None.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/ADT/None.h b/llvm/include/llvm/ADT/None.h index c78db78..d69ec17 100644 --- a/llvm/include/llvm/ADT/None.h +++ b/llvm/include/llvm/ADT/None.h @@ -20,7 +20,7 @@ namespace llvm { /// \brief A simple null object to allow implicit construction of Optional /// and similar types without having to spell out the specialization's name. enum class NoneType { None }; -static NoneType None; +const NoneType None = None; } #endif -- 2.7.4