diff options
| author | Kazu Hirata <kazu@google.com> | 2025-11-21 20:31:54 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-21 20:31:54 -0800 |
| commit | cc7e2067b1a0fd799a5bfeab4b11d399ea7831a2 (patch) | |
| tree | 1dfff29a4c01ceafef442129b2418e6d76306206 /lldb/source/Target/Target.cpp | |
| parent | b6dadc7e4d263e9983418d5362653edd4575c1b2 (diff) | |
[lldb] Remove redundant declarations (NFC) (#169003)
In C++17, static constexpr members are implicitly inline, so they no
longer require an out-of-line definition.
Identified with readability-redundant-declaration.
Diffstat (limited to 'lldb/source/Target/Target.cpp')
| -rw-r--r-- | lldb/source/Target/Target.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lldb/source/Target/Target.cpp b/lldb/source/Target/Target.cpp index 6fc8053038d1..5f2e7af54044 100644 --- a/lldb/source/Target/Target.cpp +++ b/lldb/source/Target/Target.cpp @@ -156,8 +156,6 @@ static Status installExecutable(const Installer &installer) { return Status(); } -constexpr std::chrono::milliseconds EvaluateExpressionOptions::default_timeout; - Target::Arch::Arch(const ArchSpec &spec) : m_spec(spec), m_plugin_up(PluginManager::CreateArchitectureInstance(spec)) {} |
