diff options
| author | Tim Foley <tfoleyNV@users.noreply.github.com> | 2017-06-26 13:47:08 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-26 13:47:08 -0700 |
| commit | 0259ddb0a72d3b12278404847f6e30b63e97cfc3 (patch) | |
| tree | d73c230a8b2ddc06e0fa978945aa8a838b189236 /source/slang/options.cpp | |
| parent | 3f316dcbd9274efc74f817cf36f17a511ff2e21e (diff) | |
| parent | f6cb66feab3439f41ca87cb307f69b49654883ab (diff) | |
Merge pull request #43 from tfoleyNV/import-macros
Add support for `#import`
Diffstat (limited to 'source/slang/options.cpp')
| -rw-r--r-- | source/slang/options.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/source/slang/options.cpp b/source/slang/options.cpp index 81b893d66..62b45e025 100644 --- a/source/slang/options.cpp +++ b/source/slang/options.cpp @@ -375,14 +375,6 @@ struct OptionsParser compileRequest, String(includeDirStr).begin()); } - else if (argStr == "-auto-import-dir") - { - char const* importDirStr = tryReadCommandLineArgumentRaw(arg, &argCursor, argEnd); - - spAddAutoImportPath( - compileRequest, - String(importDirStr).begin()); - } else if (argStr == "--") { // The `--` option causes us to stop trying to parse options, |
