System.RTLVersion constant added

This commit is contained in:
Владислав Джавадов 2020-06-18 21:27:19 +03:00
parent d608e7fc3a
commit 1d4bc29ce6

View File

@ -6,6 +6,13 @@ unit System;
interface
const
{$IF CompilerVersion < 15}
RTLVersion = 14.2006; // <---,
{$ELSE} // June, 2020
RTLVersion = 15.2006; // <---'
{$IFEND}
type
PPAnsiChar = ^PAnsiChar;