summary refs log tree commit diff stats
path: root/compiler/nversion.nim
blob: 2da39b13878d42f5f309e5a6740c58539e7cb5fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
#
#           The Nim Compiler
#        (c) Copyright 2015 Andreas Rumpf
#
#    See the file "copying.txt", included in this
#    distribution, for details about the copyright.
#

# This module contains Nim's version. It is the only place where it needs
# to be changed.

const
  MaxSetElements* = 1 shl 16  # (2^16) to support unicode character sets?
  VersionAsString* = system.NimVersion
  RodFileVersion* = "1223"       # modify this if the rod-format changes!

  NimCompilerApiVersion* = 3 ## Check for the existence of this before accessing it
                             ## as older versions of the compiler API do not
                             ## declare this.
ef <dennis@felsin9.de> 2015-04-07 15:16:26 +0200 committer def <dennis@felsin9.de> 2015-04-07 15:47:18 +0200 Get rid of deprecation warnings' href='/ahoang/Nim/commit/compiler/ccgthreadvars.nim?h=devel&id=39049e151f8d88f34baa74373ef92233005f3af2'>39049e151 ^
4fa80956b ^
1284827df ^
4fa80956b ^


5ad1acc60 ^

7e747d11c ^
4fa80956b ^
7e747d11c ^
f500895ef ^

e11297492 ^




7e747d11c ^

39049e151 ^
4fa80956b ^
ca1f3f36b ^
5ad1acc60 ^
bc712c28f ^
7e747d11c ^
4fa80956b ^
2df9b442c ^
ca1f3f36b ^
9502e39b6 ^
57874ed9b ^
a585caebc ^
7e747d11c ^
a585caebc ^
39049e151 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59