You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/extend.cpp
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1627,11 +1627,11 @@ namespace Sass {
1627
1627
SourcesSet debugSet;
1628
1628
debugSet = pNewSelector->sources();
1629
1629
if (debugSet.size() > 0) {
1630
-
throw"The new selector should start with no sources. Something needs to be cloned to fix this.";
1630
+
throwstd::runtime_error("The new selector should start with no sources. Something needs to be cloned to fix this.");
1631
1631
}
1632
1632
debugSet = pExtComplexSelector->sources();
1633
1633
if (debugSet.size() > 0) {
1634
-
throw"The extension selector from our subset map should not have sources. These will bleed to the new selector. Something needs to be cloned to fix this.";
1634
+
throwstd::runtime_error("The extension selector from our subset map should not have sources. These will bleed to the new selector. Something needs to be cloned to fix this.");
0 commit comments