1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 15:53:03 +04:00

build: don't use nullptr without C++11 guard

This commit is contained in:
Alexander Alekhin
2018-09-05 06:19:02 +00:00
parent 59cd636ad7
commit c441ad36c8
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -74,7 +74,7 @@ namespace
low_thresh_(low_thresh), high_thresh_(high_thresh), apperture_size_(apperture_size), L2gradient_(L2gradient)
{
old_apperture_size_ = -1;
d_counter = nullptr;
d_counter = NULL;
}
void detect(InputArray image, OutputArray edges, Stream& stream);
+1 -1
View File
@@ -223,7 +223,7 @@ openni::VideoMode CvCapture_OpenNI2::defaultStreamOutputMode(int stream)
CvCapture_OpenNI2::CvCapture_OpenNI2(int index) :
CvCapture_OpenNI2(index, nullptr)
CvCapture_OpenNI2(index, NULL)
{ }
CvCapture_OpenNI2::CvCapture_OpenNI2(const char * filename) :