Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/austingebauer/devise.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/node-sass/src/sass_types/error.h')
-rw-r--r--node_modules/node-sass/src/sass_types/error.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/node_modules/node-sass/src/sass_types/error.h b/node_modules/node-sass/src/sass_types/error.h
deleted file mode 100644
index 01786fd..0000000
--- a/node_modules/node-sass/src/sass_types/error.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef SASS_TYPES_ERROR_H
-#define SASS_TYPES_ERROR_H
-
-#include <nan.h>
-#include "sass_value_wrapper.h"
-
-namespace SassTypes
-{
- class Error : public SassValueWrapper<Error> {
- public:
- Error(Sass_Value*);
- static char const* get_constructor_name() { return "SassError"; }
- static Sass_Value* construct(const std::vector<v8::Local<v8::Value>>, Sass_Value **);
-
- static void initPrototype(v8::Local<v8::FunctionTemplate>);
- };
-}
-
-#endif