Skip to content

Commit 76aaac5

Browse files
committed
remove default argument from instantiation
The default argument is in the definition causing this error error: redefinition of default argument
1 parent 0c75f18 commit 76aaac5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sass_util.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ namespace Sass {
109109
return flattened
110110
end
111111
*/
112-
Node flatten(Node& arr, Context& ctx, int n = -1) {
112+
Node flatten(Node& arr, Context& ctx, int n) {
113113
if (n != -1 && n == 0) {
114114
return arr;
115115
}
@@ -147,4 +147,4 @@ namespace Sass {
147147

148148
return flattened;
149149
}
150-
}
150+
}

0 commit comments

Comments
 (0)