Skip to content

Commit 5d46c6f

Browse files
glebmxzyfer
authored andcommitted
Use precision 10 by default (#2730)
* Precision 10 by default * Precision 10 by default
1 parent 3066614 commit 5d46c6f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/sass.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ struct Sass_Inspect_Options {
9898

9999
// initialization list (constructor with defaults)
100100
Sass_Inspect_Options(Sass_Output_Style style = Sass::NESTED,
101-
int precision = 5)
101+
int precision = 10)
102102
: output_style(style), precision(precision)
103103
{ }
104104

src/sass_context.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ extern "C" {
381381

382382
inline void init_options (struct Sass_Options* options)
383383
{
384-
options->precision = 5;
384+
options->precision = 10;
385385
options->indent = " ";
386386
options->linefeed = LFEED;
387387
}

0 commit comments

Comments
 (0)