reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
113 Str[0] = '0' + (Maj / 10); 114 Str[1] = '0' + (Maj % 10); 115 Str[2] = '0' + std::min(Min, 9U); 116 Str[3] = '0' + std::min(Rev, 9U); 117 Str[4] = '\0'; 120 Str[0] = '0' + (Maj / 10); 121 Str[1] = '0' + (Maj % 10); 122 Str[2] = '0' + (Min / 10); 123 Str[3] = '0' + (Min % 10); 124 Str[4] = '0' + (Rev / 10); 125 Str[5] = '0' + (Rev % 10); 126 Str[6] = '\0'; 128 Builder.defineMacro("__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__", Str);