Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Commit 2fae47a

Browse files
committed
Fixes clang warning (should also fix #586)
1 parent 5e86443 commit 2fae47a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

context.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ namespace Sass {
6363
names_to_colors (map<string, Color*>()),
6464
colors_to_names (map<int, string>()),
6565
precision (initializers.precision()),
66-
subset_map (Subset_Map<string, pair<Complex_Selector*, Compound_Selector*> >()),
67-
_skip_source_map_update (initializers._skip_source_map_update())
66+
_skip_source_map_update (initializers._skip_source_map_update()),
67+
subset_map (Subset_Map<string, pair<Complex_Selector*, Compound_Selector*> >())
6868
{
6969
cwd = get_cwd();
7070

0 commit comments

Comments
 (0)