diff options
| author | jackbackrack | 2015-07-02 14:29:42 -0700 |
|---|---|---|
| committer | jackbackrack | 2015-07-02 14:29:42 -0700 |
| commit | 13d92d7f523bd42ad94170ce41a8be794bdb171d (patch) | |
| tree | f05a68a44f3fa318eb5fa7f7a7f5bf7262db763f /bin/filter.cpp | |
| parent | 3c2779ca34d72f4c0f15a1266e085c85a048a080 (diff) | |
rename id to cid, legalizeNames, better flo/dbl support in tester, better mux handling and check for uint/sint, support for bulk connect, filter ? as well
Diffstat (limited to 'bin/filter.cpp')
| -rw-r--r-- | bin/filter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/filter.cpp b/bin/filter.cpp index 4e805a48..1da9440b 100644 --- a/bin/filter.cpp +++ b/bin/filter.cpp @@ -5,7 +5,7 @@ int main (int argc, char* argv[]) { for (;;) { c = getchar(); if (c == EOF) break; - if (c == '#') + if (c == '#' || c == '?') putchar('_'); else if (c == '$') { putchar(':'); putchar(':'); |
