mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-04-06 00:32:05 +02:00
clean up
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
#include <string_view>
|
||||
|
||||
// Test for nested namespace definition
|
||||
namespace BambuStudio::Cpp17 {
|
||||
namespace OrcaSlicer::Cpp17 {
|
||||
|
||||
template<class T> class Foo
|
||||
{
|
||||
@@ -20,7 +20,7 @@ public:
|
||||
explicit Foo(T &&arg): m_arg{arg} {}
|
||||
};
|
||||
|
||||
} // namespace BambuStudio::Cpp17
|
||||
} // namespace OrcaSlicer::Cpp17
|
||||
|
||||
template<class T> std::string get_type(const T &v);
|
||||
|
||||
@@ -34,7 +34,7 @@ int main()
|
||||
// Template argument deduction for class templates
|
||||
// /////////////////////////////////////////////////////////////////////////
|
||||
|
||||
auto foo = BambuStudio::Cpp17::Foo{1.f};
|
||||
auto foo = OrcaSlicer::Cpp17::Foo{1.f};
|
||||
|
||||
// /////////////////////////////////////////////////////////////////////////
|
||||
// Structured bindings:
|
||||
|
||||
Reference in New Issue
Block a user