aboutsummaryrefslogtreecommitdiff
path: root/lldb/include/lldb/Utility/Environment.h
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/include/lldb/Utility/Environment.h')
-rw-r--r--lldb/include/lldb/Utility/Environment.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/include/lldb/Utility/Environment.h b/lldb/include/lldb/Utility/Environment.h
index 24cbee246f83..c1549a3d60a6 100644
--- a/lldb/include/lldb/Utility/Environment.h
+++ b/lldb/include/lldb/Utility/Environment.h
@@ -56,7 +56,7 @@ public:
using Base::try_emplace;
using Base::operator[];
- Environment() : Base() {}
+ Environment() {}
Environment(const Environment &RHS) : Base(RHS) {}
Environment(Environment &&RHS) : Base(std::move(RHS)) {}
Environment(char *const *Env)