Skip to content

Commit

Permalink
fork libsass with unity build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
drewwells committed Jan 28, 2016
1 parent 247e360 commit 50c6a9a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 11 deletions.
9 changes: 0 additions & 9 deletions libsass-build/ast.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2030,14 +2030,6 @@ namespace Sass {
return to_string({ NESTED, 5 });
}

// helper function for serializing colors
template <size_t range>
static double cap_channel(double c) {
if (c > range) return range;
else if (c < 0) return 0;
else return c;
}

std::string String_Quoted::inspect() const
{
return quote(value_, '*');
Expand All @@ -2064,4 +2056,3 @@ namespace Sass {
}

}

2 changes: 1 addition & 1 deletion libsass-build/include/sass/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#define SASS_VERSION_H

#ifndef LIBSASS_VERSION
#define LIBSASS_VERSION "3.3.3-4-g01e0d"
#define LIBSASS_VERSION "3.3.3-5-g15b8"
#endif

#endif
2 changes: 1 addition & 1 deletion libsass-src
Submodule libsass-src updated 1 files
+0 −9 src/ast.cpp

0 comments on commit 50c6a9a

Please sign in to comment.