diff options
author | def <dennis@felsin9.de> | 2015-07-11 14:39:19 +0200 |
---|---|---|
committer | def <dennis@felsin9.de> | 2016-01-25 19:10:37 +0100 |
commit | c50b5b62ef5ae51467754f7c1db49c4cbeaee5f8 (patch) | |
tree | 3c40a179da95227dd7308d57965809f7e2dacb44 /tests/manyloc/named_argument_bug/tri_engine | |
parent | 4246f660ea4ba7bab05811662eb53a87cc0cc049 (diff) | |
download | Nim-c50b5b62ef5ae51467754f7c1db49c4cbeaee5f8.tar.gz |
Fix a few deprecation warnings
Diffstat (limited to 'tests/manyloc/named_argument_bug/tri_engine')
-rw-r--r-- | tests/manyloc/named_argument_bug/tri_engine/gfx/color.nim | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/manyloc/named_argument_bug/tri_engine/gfx/color.nim b/tests/manyloc/named_argument_bug/tri_engine/gfx/color.nim index cdd5aaf03..b84be7a4c 100644 --- a/tests/manyloc/named_argument_bug/tri_engine/gfx/color.nim +++ b/tests/manyloc/named_argument_bug/tri_engine/gfx/color.nim @@ -8,10 +8,6 @@ from strutils import `%`, ffDecimal -from unsigned import - `shr`, - `and` - type TColor* = tuple[r, g, b, a: TR] |