From 74da8a394f77d733e3683d8a785f92a1390624f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20D=C3=ADaz=20M=C3=A1s?= Date: Wed, 13 Apr 2022 16:03:33 +0200 Subject: [PATCH] Remove deprecated todo --- unitTests/test_types.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unitTests/test_types.cpp b/unitTests/test_types.cpp index fdc855fc..d4a8e034 100644 --- a/unitTests/test_types.cpp +++ b/unitTests/test_types.cpp @@ -36,7 +36,7 @@ TEST(DataBuf, defaultInstanceIsEmpty) { TEST(DataBuf, allocatesDataWithNonEmptyConstructor) { DataBuf instance(5); - ASSERT_NE(static_cast(nullptr), instance.c_data()); /// \todo use nullptr once we move to c++11 + ASSERT_NE(nullptr, instance.c_data()); ASSERT_EQ(5, instance.size()); }