Skip to content

Commit cc070ba

Browse files
committed
Fixes issue #63. Increase minimum version of cppcheck because --std=c++03 is only available with 1.56 onwards.
1 parent b648332 commit cc070ba

File tree

1 file changed

+1
-1
lines changed
  • com.googlecode.cppcheclipse.core/src/com/googlecode/cppcheclipse/core/command

1 file changed

+1
-1
lines changed

com.googlecode.cppcheclipse.core/src/com/googlecode/cppcheclipse/core/command/Version.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public class Version {
1111
private final int minorVersion;
1212
private final int revision;
1313

14-
public static final Version MIN_VERSION = new Version (1, 52, 0);
14+
public static final Version MIN_VERSION = new Version (1, 56, 0);
1515

1616
private Version(int majorVersion, int minorVersion, int revision) {
1717
this.majorVersion = majorVersion;

0 commit comments

Comments
 (0)