Sha256: 5f8e92bf352af6a1ad7e79d10e6483ed6a5c6fc576731a9e8046ed28096fd086
Contents?: true
Size: 392 Bytes
Versions: 7
Compression:
Stored size: 392 Bytes
Contents
// sass.hpp must go before all system headers to get the // __EXTENSIONS__ fix on Solaris. #include "sass.hpp" #include "stylesheet.hpp" namespace Sass { // Constructor Sass::StyleSheet::StyleSheet(const Resource& res, Block_Obj root) : Resource(res), root(root) { } StyleSheet::StyleSheet(const StyleSheet& sheet) : Resource(sheet), root(sheet.root) { } }
Version data entries
7 entries across 6 versions & 4 rubygems