diff options
author | David Robillard <d@drobilla.net> | 2019-02-15 22:24:54 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-02-15 22:24:54 +0100 |
commit | b321fb5d3d6b3c2855c2fcc049c6f3b8fb13a7a8 (patch) | |
tree | 2347b5b8d8eac8647267fb33ed35cd0f8dfabdf8 /src/resp.cpp | |
parent | 80801dc725dbb08c67ddee92fc742093f8c2bc7c (diff) | |
download | resp-b321fb5d3d6b3c2855c2fcc049c6f3b8fb13a7a8.tar.gz resp-b321fb5d3d6b3c2855c2fcc049c6f3b8fb13a7a8.tar.bz2 resp-b321fb5d3d6b3c2855c2fcc049c6f3b8fb13a7a8.zip |
WIP: Port to LLVM7llvm7
Diffstat (limited to 'src/resp.cpp')
-rw-r--r-- | src/resp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resp.cpp b/src/resp.cpp index 7167227..d62e0aa 100644 --- a/src/resp.cpp +++ b/src/resp.cpp @@ -170,7 +170,7 @@ main(int argc, char** argv) pprint(os, ast, cenv, false); is.ignore(std::numeric_limits<std::streamsize>::max(), '\n'); // Skip newlines } - } catch (Error e) { + } catch (RespError e) { cerr << e.what() << endl; } is.close(); |