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/libsass/src/backtrace.hpp')
-rw-r--r--node_modules/node-sass/src/libsass/src/backtrace.hpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/node_modules/node-sass/src/libsass/src/backtrace.hpp b/node_modules/node-sass/src/libsass/src/backtrace.hpp
deleted file mode 100644
index 72d5fe5..0000000
--- a/node_modules/node-sass/src/libsass/src/backtrace.hpp
+++ /dev/null
@@ -1,29 +0,0 @@
-#ifndef SASS_BACKTRACE_H
-#define SASS_BACKTRACE_H
-
-#include <vector>
-#include <sstream>
-#include "file.hpp"
-#include "position.hpp"
-
-namespace Sass {
-
- struct Backtrace {
-
- ParserState pstate;
- std::string caller;
-
- Backtrace(ParserState pstate, std::string c = "")
- : pstate(pstate),
- caller(c)
- { }
-
- };
-
- typedef std::vector<Backtrace> Backtraces;
-
- const std::string traces_to_string(Backtraces traces, std::string indent = "\t");
-
-}
-
-#endif