From 599a3831ad1b8268ae887ce682f908d77bb8613f Mon Sep 17 00:00:00 2001 From: Sam McCall Date: Fri, 15 Jun 2018 12:39:21 +0000 Subject: [PATCH] [clangd] context key constructor is constexpr. NFC llvm-svn: 334824 --- clang-tools-extra/clangd/Context.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang-tools-extra/clangd/Context.h b/clang-tools-extra/clangd/Context.h index 486b123..7e14f86 100644 --- a/clang-tools-extra/clangd/Context.h +++ b/clang-tools-extra/clangd/Context.h @@ -43,7 +43,7 @@ public: static_assert(!std::is_reference::value, "Reference arguments to Key<> are not allowed"); - Key() = default; + constexpr Key() = default; Key(Key const &) = delete; Key &operator=(Key const &) = delete; -- 2.7.4