Apply modernize-use-nullptr
Setup: - `mkdir tidy; cd tidy` - `cmake .. -DCMAKE_BUILD_TYPE=debug -DPROC_TARGET_NUMBER=1 -DCACHE_NAME_SUFFIX=4 -DBINDIR=. -DDATADIR=. -DBUILD_BUNDLE=ON -DWITH_LTO=OFF -DOPTION_OMP=OFF -DCMAKE_EXPORT_COMPILE_COMMANDS=ON` - `cd ..` - `find -name '*.cc' -exec clang-tidy-3.8 -header-filter=.* -p=tidy -fix-errors -checks=modernize-use-nullptr {} \;`
This commit is contained in:
@@ -43,13 +43,13 @@ public:
|
||||
:exif_base(-1)
|
||||
,ciff_base(-1)
|
||||
,ciff_len(0)
|
||||
,ifp(NULL),ofp(NULL)
|
||||
,ifp(nullptr),ofp(nullptr)
|
||||
,order(0x4949)
|
||||
,ifname(NULL)
|
||||
,meta_data(NULL)
|
||||
,ifname(nullptr)
|
||||
,meta_data(nullptr)
|
||||
,shot_select(0),multi_out(0)
|
||||
,float_raw_image(NULL)
|
||||
,image(NULL)
|
||||
,float_raw_image(nullptr)
|
||||
,image(nullptr)
|
||||
,bright(1.),threshold(0.)
|
||||
,half_size(0),four_color_rgb(0),document_mode(0),highlight(0)
|
||||
,verbose(0)
|
||||
|
Reference in New Issue
Block a user