We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f70910 commit fa30a33Copy full SHA for fa30a33
ext/intl/dateformat/dateformat_format_object.cpp
@@ -70,10 +70,10 @@ U_CFUNC PHP_FUNCTION(datefmt_format_object)
70
size_t locale_len;
71
bool pattern = false;
72
UDate date;
73
- std::unique_ptr<TimeZone> timeZone = NULL;
+ std::unique_ptr<TimeZone> timeZone;
74
UErrorCode status = U_ZERO_ERROR;
75
- std::unique_ptr<DateFormat> df = NULL;
76
- std::unique_ptr<Calendar> cal = NULL;
+ std::unique_ptr<DateFormat> df;
+ std::unique_ptr<Calendar> cal;
77
DateFormat::EStyle dateStyle = DateFormat::kDefault,
78
timeStyle = DateFormat::kDefault;
79
0 commit comments