Skip to content
This repository was archived by the owner on Apr 7, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ install:
- echo %GOPATH%
- dir C:\mingw64\bin
- go get golang.org/x/net/context
- go test

build_script:
- go build -x -ldflags "-extldflags '-static'"
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