Skip to content

Commit

Permalink
Use precision 10 by default (sass#2730)
Browse files Browse the repository at this point in the history
* Precision 10 by default

* Precision 10 by default
  • Loading branch information
glebm authored and xzyfer committed Nov 13, 2018
1 parent 3066614 commit 5d46c6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/sass.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ struct Sass_Inspect_Options {

// initialization list (constructor with defaults)
Sass_Inspect_Options(Sass_Output_Style style = Sass::NESTED,
int precision = 5)
int precision = 10)
: output_style(style), precision(precision)
{ }

Expand Down
2 changes: 1 addition & 1 deletion src/sass_context.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ extern "C" {

inline void init_options (struct Sass_Options* options)
{
options->precision = 5;
options->precision = 10;
options->indent = " ";
options->linefeed = LFEED;
}
Expand Down

0 comments on commit 5d46c6f

Please sign in to comment.