Merge: Snapmaker Orca 2.1.2

This commit is contained in:
xiaoyeliu
2025-11-17 10:04:25 +08:00
parent 737948be1f
commit e89263e51a
1147 changed files with 668188 additions and 15290 deletions

View File

@@ -10,7 +10,7 @@
#include <string_view>
// Test for nested namespace definition
namespace OrcaSlicer::Cpp17 {
namespace Snapmaker_Orca::Cpp17 {
template<class T> class Foo
{
@@ -20,7 +20,7 @@ public:
explicit Foo(T &&arg): m_arg{arg} {}
};
} // namespace OrcaSlicer::Cpp17
} // namespace Snapmaker_Orca::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 = OrcaSlicer::Cpp17::Foo{1.f};
auto foo = Snapmaker_Orca::Cpp17::Foo{1.f};
// /////////////////////////////////////////////////////////////////////////
// Structured bindings: