ext/libsass/src/file.hpp in sassc-1.11.1 vs ext/libsass/src/file.hpp in sassc-1.11.2

- old
+ new

@@ -2,15 +2,14 @@ #define SASS_FILE_H #include <string> #include <vector> +#include "ast_fwd_decl.hpp" + namespace Sass { - class Block; - class Context; - namespace File { // return the current directory // always with forward slashes std::string get_cwd(); @@ -103,12 +102,12 @@ // parsed stylesheet from loaded resource class StyleSheet : public Resource { public: // parsed root block - Block* root; + Block_Obj root; public: - StyleSheet(const Resource& res, Block* root) + StyleSheet(const Resource& res, Block_Obj root) : Resource(res), root(root) { } }; namespace File {