Skip to content

Commit fa30a33

Browse files
committed
changes from feedback
1 parent 3f70910 commit fa30a33

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ext/intl/dateformat/dateformat_format_object.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ U_CFUNC PHP_FUNCTION(datefmt_format_object)
7070
size_t locale_len;
7171
bool pattern = false;
7272
UDate date;
73-
std::unique_ptr<TimeZone> timeZone = NULL;
73+
std::unique_ptr<TimeZone> timeZone;
7474
UErrorCode status = U_ZERO_ERROR;
75-
std::unique_ptr<DateFormat> df = NULL;
76-
std::unique_ptr<Calendar> cal = NULL;
75+
std::unique_ptr<DateFormat> df;
76+
std::unique_ptr<Calendar> cal;
7777
DateFormat::EStyle dateStyle = DateFormat::kDefault,
7878
timeStyle = DateFormat::kDefault;
7979

0 commit comments

Comments
 (0)