Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-02-21 10:05:27

0001 // Copyright 2015 the V8 project authors. All rights reserved.
0002 // Use of this source code is governed by a BSD-style license that can be
0003 // found in the LICENSE file.
0004 
0005 #ifndef V8_INCLUDE_VERSION_H_  // V8_VERSION_H_ conflicts with src/version.h
0006 #define V8_INCLUDE_VERSION_H_
0007 
0008 // These macros define the version number for the current version.
0009 // NOTE these macros are used by some of the tool scripts and the build
0010 // system so their names cannot be changed without changing the scripts.
0011 #define V8_MAJOR_VERSION 12
0012 #define V8_MINOR_VERSION 4
0013 #define V8_BUILD_NUMBER 254
0014 #define V8_PATCH_LEVEL 21
0015 
0016 // Use 1 for candidates and 0 otherwise.
0017 // (Boolean macro values are not supported by all preprocessors.)
0018 #define V8_IS_CANDIDATE_VERSION 0
0019 
0020 #endif  // V8_INCLUDE_VERSION_H_