diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-05-31 03:04:36 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2016-05-31 03:04:45 +0200 |
commit | 893be3a5a40cbbceb211efe47361632ccdbed227 (patch) | |
tree | fc7d1eae670fd6703b06022d2d836a6b40f68c75 /tests/manyloc/named_argument_bug/tri_engine | |
parent | 1e5926458c2d18dec3389d00f41680518fb939c0 (diff) | |
download | Nim-893be3a5a40cbbceb211efe47361632ccdbed227.tar.gz |
changed the compiler's path handling; fixes #546
Diffstat (limited to 'tests/manyloc/named_argument_bug/tri_engine')
-rw-r--r-- | tests/manyloc/named_argument_bug/tri_engine/math/circle.nim | 4 | ||||
-rw-r--r-- | tests/manyloc/named_argument_bug/tri_engine/math/vec.nim | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/manyloc/named_argument_bug/tri_engine/math/circle.nim b/tests/manyloc/named_argument_bug/tri_engine/math/circle.nim index 7e7517998..b95cfa379 100644 --- a/tests/manyloc/named_argument_bug/tri_engine/math/circle.nim +++ b/tests/manyloc/named_argument_bug/tri_engine/math/circle.nim @@ -1,6 +1,6 @@ import - tri_engine/config, - tri_engine/math/vec + ../config, + vec type TCircle* = tuple[p: TV2[TR], r: TR] diff --git a/tests/manyloc/named_argument_bug/tri_engine/math/vec.nim b/tests/manyloc/named_argument_bug/tri_engine/math/vec.nim index 3b57acb8e..926958fe4 100644 --- a/tests/manyloc/named_argument_bug/tri_engine/math/vec.nim +++ b/tests/manyloc/named_argument_bug/tri_engine/math/vec.nim @@ -1,6 +1,6 @@ import macros, - tri_engine/config + "../config" type TV2*[T:SomeNumber=TR] = array[0..1, T] |