summaryrefslogtreecommitdiff
path: root/include/lldb/Interpreter/OptionValueChar.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lldb/Interpreter/OptionValueChar.h')
-rw-r--r--include/lldb/Interpreter/OptionValueChar.h13
1 files changed, 4 insertions, 9 deletions
diff --git a/include/lldb/Interpreter/OptionValueChar.h b/include/lldb/Interpreter/OptionValueChar.h
index e73976fefccc..d8661363751b 100644
--- a/include/lldb/Interpreter/OptionValueChar.h
+++ b/include/lldb/Interpreter/OptionValueChar.h
@@ -1,9 +1,8 @@
-//===-- OptionValueBoolean.h ------------------------------------*- C++ -*-===//
+//===-- OptionValueChar.h ---------------------------------------*- C++ -*-===//
//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
@@ -25,9 +24,7 @@ public:
~OptionValueChar() override {}
- //---------------------------------------------------------------------
// Virtual subclass pure virtual overrides
- //---------------------------------------------------------------------
OptionValue::Type GetType() const override { return eTypeChar; }
@@ -47,9 +44,7 @@ public:
return true;
}
- //---------------------------------------------------------------------
// Subclass specific functions
- //---------------------------------------------------------------------
const char &operator=(char c) {
m_current_value = c;