diff options
| author | louist103 <35883445+louist103@users.noreply.github.com> | 2021-12-26 23:57:11 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-26 23:57:11 -0500 |
| commit | fd5a7f434171a33b1b3eb2a3e112fdcee6d9262d (patch) | |
| tree | bdbb584b92643315bb181aa09e2d6b43d98bed24 /ZAPD/Main.cpp | |
| parent | 155a463a54a3bc9b9c86000ae6d819455875ec15 (diff) | |
Add flag to force unaccounted to be static (#216)
* add forced static
* add flag for forcing unaccounted to be static
* Update README.md
Co-authored-by: Louis <louist103@pop-os.localdomain>
Diffstat (limited to 'ZAPD/Main.cpp')
| -rw-r--r-- | ZAPD/Main.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ZAPD/Main.cpp b/ZAPD/Main.cpp index 8f723a7..048338f 100644 --- a/ZAPD/Main.cpp +++ b/ZAPD/Main.cpp @@ -216,6 +216,10 @@ int main(int argc, char* argv[]) { Globals::Instance->forceStatic = true; } + else if (arg == "-us" || arg == "--unaccounted-static") + { + Globals::Instance->forceUnaccountedStatic = true; + } } // Parse File Mode |
