diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-02-17 00:32:36 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-17 09:32:36 +0100 |
commit | b9994925f5051a55bb13bd3115d60c92c52c3c09 (patch) | |
tree | 944f2d01d894afbffb4f4a561837f2b90744743a /lib/impure | |
parent | e463a67c74801da832e8659065c162b37f549d64 (diff) | |
download | Nim-b9994925f5051a55bb13bd3115d60c92c52c3c09.tar.gz |
remove all uses of condsyms symbols defined prior to bootstrap nim 0.20.0 (#16918)
* nimNoArrayToCstringConversion deadcode * nimbabel deadcode * nimHasalignOf deadcode * nimvarargstyped deadcode * nimhygiene deadcode * nimNewTypedesc deadcode * nimlocks deadcode * nimHasCppDefine deadcode * nimHasRunnableExamples deadcode * nimHasNilChecks deadcode * nimSymKind deadcode * minor macros refactoring * nimVmEqIdent deadcode * nimNoNil deadcode * nimNoZeroTerminator deadcode * nimHasSymOwnerInMacro deadcode * nimVmExportFixed deadcode * nimNewRuntime deadcode * nimAshr deadcode * nimUncheckedArrayTyp deadcode * nimHasTypeof deadcode * nimErrorProcCanHaveBody deadcode * nimHasHotCodeReloading deadcode * nimHasSignatureHashInMacro deadcode * nimHasDefault deadcode * nimMacrosSizealignof deadcode
Diffstat (limited to 'lib/impure')
-rw-r--r-- | lib/impure/re.nim | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/impure/re.nim b/lib/impure/re.nim index de75aa063..20dee2ecd 100644 --- a/lib/impure/re.nim +++ b/lib/impure/re.nim @@ -386,9 +386,6 @@ proc findAll*(s: string, pattern: Regex, start = 0): seq[string] {.inline.} = result = @[] for x in findAll(s, pattern, start): result.add x -when not defined(nimhygiene): - {.pragma: inject.} - template `=~` *(s: string, pattern: Regex): untyped = ## This calls ``match`` with an implicit declared ``matches`` array that ## can be used in the scope of the ``=~`` call: |