From b8ddecf41c8938136b3f4a081e1b8a98584c2401 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sat, 16 Feb 2019 14:20:26 +0000 Subject: Modernize clang tidy fixes --- libmysqlpp/my-column.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libmysqlpp/my-column.cpp') diff --git a/libmysqlpp/my-column.cpp b/libmysqlpp/my-column.cpp index c5521c7..488538e 100644 --- a/libmysqlpp/my-column.cpp +++ b/libmysqlpp/my-column.cpp @@ -1,7 +1,7 @@ #include "my-column.h" #include "my-selectcommand.h" #include "my-error.h" -#include +#include #include MySQL::ColumnBase::ColumnBase(const char * name, unsigned int i) : @@ -48,7 +48,7 @@ MySQL::NullColumn::NullColumn(const char * name, unsigned int field, MYSQL_BIND { b->is_null = &is_null; b->buffer_type = MYSQL_TYPE_NULL; - b->buffer = NULL; + b->buffer = nullptr; b->buffer_length = 0; } -- cgit v1.2.3