Author: adrian Date: Mon Oct 7 14:23:19 2019 New Revision: 373968 URL: http://llvm.org/viewvc/llvm-project?rev=373968&view=rev Log: Mark constructor as default and remove implementation (NFC)
Modified: lldb/trunk/include/lldb/Core/Mangled.h lldb/trunk/source/Core/Mangled.cpp Modified: lldb/trunk/include/lldb/Core/Mangled.h URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Core/Mangled.h?rev=373968&r1=373967&r2=373968&view=diff ============================================================================== --- lldb/trunk/include/lldb/Core/Mangled.h (original) +++ lldb/trunk/include/lldb/Core/Mangled.h Mon Oct 7 14:23:19 2019 @@ -49,7 +49,7 @@ public: /// Default constructor. /// /// Initialize with both mangled and demangled names empty. - Mangled(); + Mangled() = default; /// Construct with name. /// Modified: lldb/trunk/source/Core/Mangled.cpp URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/Mangled.cpp?rev=373968&r1=373967&r2=373968&view=diff ============================================================================== --- lldb/trunk/source/Core/Mangled.cpp (original) +++ lldb/trunk/source/Core/Mangled.cpp Mon Oct 7 14:23:19 2019 @@ -124,8 +124,6 @@ get_demangled_name_without_arguments(Con } #pragma mark Mangled -// Default constructor -Mangled::Mangled() : m_mangled(), m_demangled() {} // Constructor with an optional string and a boolean indicating if it is the // mangled version. _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits