summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* Fixed parsing of float literals.Reimer Behrends2014-05-232-44/+92
| | | | | | | | | Float literals were not parsed properly when their fractional part exceeded 53 significant bits. This affected in particular math.PI and math.E. Rather than reinventing the wheel, this patch reuses C's strtod() implementation, which already does the heavy lifting with respect to correctness, though some caution is necessary to keep float parsing locale-independent.
* Merge pull request #1182 from boydgreenfield/develVarriount2014-05-211-4/+20
|\ | | | | Clarify newFileSize & mappedSize params in memfiles.open() docs
| * Revert 876cad3a - making nimprof fix on a new branchboydgreenfield2014-05-201-1/+0
| |
| * Fix missing import in nimprof.nim when --threads:onboydgreenfield2014-05-201-0/+1
| |
| * Update posix open() call to incl. permissionsboydgreenfield2014-05-051-1/+4
| | | | | | This explicitly grants user read/write access to newly-created mmap files. Previously, on some systems files would be created but could not be re-opened as the user lacked sufficient permissions.
| * Clarify newFileSize & mappedSize params in memfiles.open() docsboydgreenfield2014-05-051-3/+16
| |
* | Merge pull request #1191 from gradha/pr_removes_abstypesVarriount2014-05-212-152/+65
|\ \ | | | | | | Moves abstypes content into manual.
| * | Moves abstypes content into manual.Grzegorz Adam Hankiewicz2014-05-112-152/+65
| | |
* | | Merge pull request #1204 from flaviut/quotedidentescapeVarriount2014-05-214-55/+42
|\ \ \ | | | | | | | | Fix #1081
| * \ \ Merge https://github.com/Araq/Nimrod into quotedidentescapeflaviut2014-05-165-17/+37
| |\ \ \
| * | | | Add test for #1081flaviut2014-05-161-0/+17
| | | | |
| * | | | Make codegen for `1` and similar validflaviut2014-05-163-55/+25
| | | | |
* | | | | Merge pull request #1210 from boydgreenfield/nimprof-lock-fixVarriount2014-05-211-6/+7
|\ \ \ \ \ | | | | | | | | | | | | Fix nimprof import error when --threads:on.
| * | | | | Fix nimprof import error when --threads:on.Nick Greenfield2014-05-201-6/+7
| | |_|_|/ | |/| | |
* | | | | Merge pull request #1169 from Araq/sigpipeVarriount2014-05-212-1/+12
|\ \ \ \ \ | | | | | | | | | | | | Fixes #1168
| * | | | | Fixes #1168Simon Hafner2014-05-032-1/+12
| | | | | |
* | | | | | Merge pull request #1206 from barcharcraz/windowsRandomVarriount2014-05-211-7/+14
|\ \ \ \ \ \ | | | | | | | | | | | | | | Windows random(float): float
| * | | | | | added a note about random(max: float): float's resolution on windowsCharlie2014-05-181-1/+2
| | | | | | |
| * | | | | | added random(max: float): float support to windowsCharlie2014-05-181-7/+13
| | |_|_|/ / | |/| | | |
* | | | | | Merge pull request #1207 from barcharcraz/cstringManualVarriount2014-05-211-0/+8
|\ \ \ \ \ \ | |/ / / / / |/| | | | | added note about `$` for cstrings to the manual
| * | | | | added note about `$` for cstrings to the manualCharlie2014-05-181-0/+8
|/ / / / /
* | | | / Fixes #1197.Dominik Picheta2014-05-141-8/+28
| |_|_|/ |/| | |
* | | | Merge pull request #1186 from ppelleti/typosSimon Hafner2014-05-083-8/+8
|\ \ \ \ | | | | | | | | | | fix some typos
| * | | | fix some typosPatrick Pelletier2014-05-073-8/+8
|/ / / /
* | | | Merge pull request #1185 from barcharcraz/kochilkSimon Hafner2014-05-061-1/+1
|\ \ \ \ | |_|_|/ |/| | | added .ilk files to the koch clean list
| * | | added .ilk files to the koch clean list, these are incremental link ↵Charlie2014-05-061-1/+1
| | | | | | | | | | | | | | | | information files for MSVC
* | | | bugfix: bool for case statementsAraq2014-05-061-1/+1
|/ / /
* | | 2nd attempt to fix bootstrappingAraq2014-05-061-1/+1
| | |
* | | attempt to fix the bootstrappingAraq2014-05-061-3/+1
| | |
* | | bootstraps works again; get rid of compile-time 'rand' (too weird)Araq2014-05-062-6/+2
| | |
* | | Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-05-0612-58/+582
|\ \ \ | | |/ | |/|
| * | Merge pull request #1175 from EXetoC/await-discardDominik Picheta2014-05-042-1/+41
| |\ \ | | | | | | | | Fix #1170.
| | * | Fix #1170.EXetoC2014-05-042-1/+41
| | | |
| * | | Merge pull request #1177 from rbehrends/reftablesAndreas Rumpf2014-05-043-1/+414
| |\ \ \ | | |/ / | |/| | Added support for ref type hash tables.
| | * | Added support for ref type hash tables.Reimer Behrends2014-05-043-1/+414
| |/ / | | | | | | | | | | | | | | | This reuses the hash table implementation for objects (and the associated tests). For efficiency reasons, iterator implementations are currently adapted rather than calling the TTable code.
| * | Merge pull request #1173 from EXetoC/pfuture-nested-type-paramDominik Picheta2014-05-032-13/+22
| |\ \ | | | | | | | | Fix #1171.
| | * | Fix #1171.EXetoC2014-05-032-13/+22
| | | |
| * | | DWORD -> PULONG for POverlapped.Dominik Picheta2014-05-031-2/+2
| | |/ | |/|
| * | fixed paths because caasdriver is now in testamentSimon Hafner2014-05-032-2/+2
| | |
| * | fixed constant typo (SimulateCaasMemReset)Simon Hafner2014-05-021-3/+3
| |/
| * Await is now supported in try statements.Dominik Picheta2014-05-011-26/+79
| |
| * Fixes buffered recv in asyncnet.Dominik Picheta2014-04-301-11/+17
| |
| * Get rid unsafe pointer type in GetQueuedCompletionStatus.Dominik Picheta2014-04-303-4/+7
| |
* | added test case for bug #1140Araq2014-05-061-0/+35
| |
* | some additions to winleanAraq2014-05-061-1/+9
| |
* | fixes #1140Araq2014-05-052-1/+3
| |
* | implemented builtin noncopying sliceAraq2014-05-027-18/+42
|/
* bugfix: MS-GC GC_unrefAraq2014-04-301-1/+2
|
* compiler prepared for the new comment handlingAraq2014-04-308-4/+17
|
* async might work now reliablyAraq2014-04-303-27/+32
|