File tree 2 files changed +8
-8
lines changed
2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 20
20
21
21
namespace tesseract {
22
22
23
- constexpr const char *kLRM = " \u200E " ; // Left-to-Right Mark
24
- constexpr const char *kRLM = " \u200F " ; // Right-to-Left Mark
25
- constexpr const char *kRLE = " \u202A " ; // Right-to-Left Embedding
26
- constexpr const char *kPDF = " \u202C " ; // Pop Directional Formatting
23
+ const char * const kLRM = " \u200E " ; // Left-to-Right Mark
24
+ const char * const kRLM = " \u200F " ; // Right-to-Left Mark
25
+ const char * const kRLE = " \u202A " ; // Right-to-Left Embedding
26
+ const char * const kPDF = " \u202C " ; // Pop Directional Formatting
27
27
28
28
} // namespace
Original file line number Diff line number Diff line change 29
29
/* -----------------------------------------------------------------------------
30
30
Global Data Definitions and Declarations
31
31
-----------------------------------------------------------------------------*/
32
- constexpr const char * kMicroFeatureType = " mf" ;
33
- constexpr const char * kCNFeatureType = " cn" ;
34
- constexpr const char * kIntFeatureType = " if" ;
35
- constexpr const char * kGeoFeatureType = " tb" ;
32
+ const char * const kMicroFeatureType = " mf" ;
33
+ const char * const kCNFeatureType = " cn" ;
34
+ const char * const kIntFeatureType = " if" ;
35
+ const char * const kGeoFeatureType = " tb" ;
36
36
37
37
// Define all of the parameters for the MicroFeature type.
38
38
StartParamDesc (MicroFeatureParams)
You can’t perform that action at this time.
0 commit comments