Changeset View
Changeset View
Standalone View
Standalone View
clang/include/clang/Serialization/ASTBitCodes.h
Show All 35 Lines | |||||
/// Whenever the AST file format changes in a way that makes it | /// Whenever the AST file format changes in a way that makes it | ||||
/// incompatible with previous versions (such that a reader | /// incompatible with previous versions (such that a reader | ||||
/// designed for the previous version could not support reading | /// designed for the previous version could not support reading | ||||
/// the new version), this number should be increased. | /// the new version), this number should be increased. | ||||
/// | /// | ||||
/// Version 4 of AST files also requires that the version control branch and | /// Version 4 of AST files also requires that the version control branch and | ||||
/// revision match exactly, since there is no backward compatibility of | /// revision match exactly, since there is no backward compatibility of | ||||
/// AST files at this time. | /// AST files at this time. | ||||
const unsigned VERSION_MAJOR = 23; | const unsigned VERSION_MAJOR = 24; | ||||
/// AST file minor version number supported by this version of | /// AST file minor version number supported by this version of | ||||
/// Clang. | /// Clang. | ||||
/// | /// | ||||
/// Whenever the AST format changes in a way that is still | /// Whenever the AST format changes in a way that is still | ||||
/// compatible with previous versions (such that a reader designed | /// compatible with previous versions (such that a reader designed | ||||
/// for the previous version could still support reading the new | /// for the previous version could still support reading the new | ||||
/// version by ignoring new kinds of subblocks), this number | /// version by ignoring new kinds of subblocks), this number | ||||
▲ Show 20 Lines • Show All 2,118 Lines • Show Last 20 Lines |