Skip to content

Commit 74da8a3

Browse files
committed
Remove deprecated todo
1 parent ee855c0 commit 74da8a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unitTests/test_types.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ TEST(DataBuf, defaultInstanceIsEmpty) {
3636

3737
TEST(DataBuf, allocatesDataWithNonEmptyConstructor) {
3838
DataBuf instance(5);
39-
ASSERT_NE(static_cast<byte*>(nullptr), instance.c_data()); /// \todo use nullptr once we move to c++11
39+
ASSERT_NE(nullptr, instance.c_data());
4040
ASSERT_EQ(5, instance.size());
4141
}
4242

0 commit comments

Comments
 (0)