Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Docker-in-Docker (DinD) capabilities of public runners deactivated.
More info
Open sidebar
CTA-LAPP
PHOENIX_LIBS
PhoenixHDF5
Commits
95f2e536
Commit
95f2e536
authored
Dec 03, 2020
by
Pierre Aubert
Browse files
Fix unsigned char
parent
8432033f
Pipeline
#93911
passed with stages
in 3 minutes and 11 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/BackEnd/backend.cpp
src/BackEnd/backend.cpp
+1
-1
No files found.
src/BackEnd/backend.cpp
View file @
95f2e536
...
...
@@ -688,7 +688,7 @@ std::string ph5_backendTableSourceCompType(PTable & table){
std
::
string
ph5_cTypeToHDF5
(
const
std
::
string
&
type
){
if
(
type
==
"char"
||
type
==
"int8_t"
){
return
"H5::PredType::NATIVE_INT8"
;}
else
if
(
type
==
"bool"
){
return
"H5::PredType::NATIVE_INT8"
;}
else
if
(
type
==
"unsi
n
ged char"
||
type
==
"int8_t"
){
return
"H5::PredType::NATIVE_UINT8"
;}
else
if
(
type
==
"unsig
n
ed char"
||
type
==
"int8_t"
){
return
"H5::PredType::NATIVE_UINT8"
;}
else
if
(
type
==
"short"
||
type
==
"int16_t"
){
return
"H5::PredType::NATIVE_INT16"
;}
else
if
(
type
==
"unsigned short"
||
type
==
"uint16_t"
){
return
"H5::PredType::NATIVE_UINT16"
;}
else
if
(
type
==
"int"
||
type
==
"int32_t"
){
return
"H5::PredType::NATIVE_INT32"
;}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment