Remove deprecated todo

This commit is contained in:
Luis Díaz Más 2022-04-13 16:03:33 +02:00
parent ee855c0e71
commit 74da8a394f

View File

@ -36,7 +36,7 @@ TEST(DataBuf, defaultInstanceIsEmpty) {
TEST(DataBuf, allocatesDataWithNonEmptyConstructor) {
DataBuf instance(5);
ASSERT_NE(static_cast<byte*>(nullptr), instance.c_data()); /// \todo use nullptr once we move to c++11
ASSERT_NE(nullptr, instance.c_data());
ASSERT_EQ(5, instance.size());
}