diff options
author | John Hodge <tpg@mutabah.net> | 2018-11-24 14:50:12 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2018-11-24 14:50:12 +0800 |
commit | 146483f00b7e8014b7abd2a382d993daabaf3359 (patch) | |
tree | fd49d6ab1977c9fd11f7b7edb8aa193222556a6d /tools | |
parent | c2f9278596a4f1eec3e611d3425edd10e0d15c83 (diff) | |
download | mrust-146483f00b7e8014b7abd2a382d993daabaf3359.tar.gz |
minicargo - (minor) #include <> to ""
Diffstat (limited to 'tools')
-rw-r--r-- | tools/minicargo/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/minicargo/main.cpp b/tools/minicargo/main.cpp index d7312d48..ec6b8b45 100644 --- a/tools/minicargo/main.cpp +++ b/tools/minicargo/main.cpp @@ -9,9 +9,9 @@ #include <iostream> #include <cstring> // strcmp #include <map> -#include "debug.h" +#include <debug.h> #include "manifest.h" -#include "helpers.h" +#include <helpers.h> #include "repository.h" #include "build.h" |