Skip to content

Commit 5a8ec55

Browse files
committed
Trigger the 'Please update your hxcpp' message to deal with the c++11 changes
1 parent 596b6e0 commit 5a8ec55

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

toolchain/haxe-target.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<xml>
22

33
<!-- make sure hxcpp.n is up to date -->
4-
<pleaseUpdateHxcppTool version="7" />
4+
<pleaseUpdateHxcppTool version="8" />
55

66
<pragma once="true" />
77

tools/hxcpp/BuildTool.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2459,7 +2459,7 @@ class BuildTool
24592459
public function checkToolVersion(inVersion:String)
24602460
{
24612461
var ver = Std.parseInt(inVersion);
2462-
if (ver>7)
2462+
if (ver>8)
24632463
Log.error("Your version of hxcpp.n is out-of-date. Please update by compiling 'haxe compile.hxml' in hxcpp/tools/hxcpp.");
24642464
}
24652465

0 commit comments

Comments
 (0)