Skip to content

Commit a61117a

Browse files
committed
Merge pull request #1372 from drewwells/feature/redefarg
remove default argument from instantiation
2 parents 154aac6 + 76aaac5 commit a61117a

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)