diff options
author | Josh Blum | 2013-08-24 18:57:37 -0700 |
---|---|---|
committer | Josh Blum | 2013-08-30 08:57:16 -0700 |
commit | b2f40f754acb427a46c4c237cd89c0ee0cdd3c3b (patch) | |
tree | afc0494d2c38da38ae69bca78369b77eaaa54f44 /lib | |
parent | d2e23886cbe7c0829f62db70f36eb1095a8d3d41 (diff) | |
download | sandhi-b2f40f754acb427a46c4c237cd89c0ee0cdd3c3b.tar.gz sandhi-b2f40f754acb427a46c4c237cd89c0ee0cdd3c3b.tar.bz2 sandhi-b2f40f754acb427a46c4c237cd89c0ee0cdd3c3b.zip |
gras: fix jit factory declaration when no LLVM
Diffstat (limited to 'lib')
-rw-r--r-- | lib/jit_factory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/jit_factory.cpp b/lib/jit_factory.cpp index 8d7ef89..a437a52 100644 --- a/lib/jit_factory.cpp +++ b/lib/jit_factory.cpp @@ -237,7 +237,7 @@ void gras::jit_factory(const std::string &source, const std::vector<std::string> #else //HAVE_LLVM -void Factory::compile(const std::string &, const std::vector<std::string> &) +void gras::jit_factory(const std::string &, const std::vector<std::string> &) { throw std::runtime_error("GRAS compiler not built with Clang support!"); } |