summaryrefslogtreecommitdiffstats
path: root/c++/test/ttypes.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'c++/test/ttypes.cpp')
-rw-r--r--c++/test/ttypes.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/c++/test/ttypes.cpp b/c++/test/ttypes.cpp
index 8afb4bb..5cb8adb 100644
--- a/c++/test/ttypes.cpp
+++ b/c++/test/ttypes.cpp
@@ -657,7 +657,7 @@ test_named()
{
static hsize_t ds_size[2] = {10, 20};
unsigned attr_data[10][20];
- DataType * ds_type = NULL;
+ DataType *ds_type = NULL;
SUBTEST("Named datatypes");
try {
@@ -987,7 +987,7 @@ test_encode_decode()
verify_val(inttyp.hasBinaryDesc(), true, "DataType::encode", __LINE__, __FILE__);
// Create an IntType instance from the decoded pointer and verify it
- IntType * decoded_int_ptr(static_cast<IntType *>(inttyp.decode()));
+ IntType *decoded_int_ptr(static_cast<IntType *>(inttyp.decode()));
H5T_sign_t int_sign = decoded_int_ptr->getSign();
verify_val(static_cast<long>(int_sign), static_cast<long>(H5T_SGN_NONE), "DataType::decode", __LINE__,
__FILE__);