We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01e0d84 commit 15b88d3Copy full SHA for 15b88d3
src/ast.cpp
@@ -2030,14 +2030,6 @@ namespace Sass {
2030
return to_string({ NESTED, 5 });
2031
}
2032
2033
- // helper function for serializing colors
2034
- template <size_t range>
2035
- static double cap_channel(double c) {
2036
- if (c > range) return range;
2037
- else if (c < 0) return 0;
2038
- else return c;
2039
- }
2040
-
2041
std::string String_Quoted::inspect() const
2042
{
2043
return quote(value_, '*');
@@ -2064,4 +2056,3 @@ namespace Sass {
2064
2056
2065
2057
2066
2058
2067
0 commit comments