We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14eeb8e commit 4678307Copy full SHA for 4678307
csrc/fusion.cpp
@@ -105,7 +105,7 @@ bool Fusion::sameDefinition(const Fusion& other) const {
105
return true;
106
}
107
108
-void Fusion::swap(Fusion& a, Fusion& b) noexcept {
+void Fusion::swap(Fusion& a, Fusion& b) {
109
FUSER_PERF_SCOPE("Fusion swap");
110
111
if (&a == &b) {
csrc/fusion.h
@@ -187,7 +187,7 @@ class NVF_API Fusion : public PolymorphicBase {
187
188
~Fusion() override;
189
190
- static void swap(Fusion& a, Fusion& b) noexcept;
+ static void swap(Fusion& a, Fusion& b);
191
192
void clear() noexcept;
193
0 commit comments