Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Özgür Ozan Sen
ogs
Commits
7a2340db
Commit
7a2340db
authored
10 years ago
by
wenqing
Browse files
Options
Downloads
Patches
Plain Diff
Remove a commit about warnings
parent
6acb5d61
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
FileIO/RapidXmlIO/RapidVtuInterface.cpp
+2
-2
2 additions, 2 deletions
FileIO/RapidXmlIO/RapidVtuInterface.cpp
FileIO/RapidXmlIO/RapidVtuInterface.h
+1
-1
1 addition, 1 deletion
FileIO/RapidXmlIO/RapidVtuInterface.h
with
3 additions
and
3 deletions
FileIO/RapidXmlIO/RapidVtuInterface.cpp
+
2
−
2
View file @
7a2340db
...
...
@@ -316,14 +316,14 @@ bool RapidVtuInterface::isVTKUnstructuredGrid(const rapidxml::xml_node<>* vtk_ro
return
false
;
}
char
*
RapidVtuInterface
::
uncompressData
(
const
rapidxml
::
xml_node
<>*
node
)
unsigned
char
*
RapidVtuInterface
::
uncompressData
(
const
rapidxml
::
xml_node
<>*
node
)
{
rapidxml
::
xml_node
<>*
data_node
=
node
->
first_node
(
"AppendedData"
);
char
*
compressed_data
(
NULL
);
if
(
data_node
)
compressed_data
=
data_node
->
value
();
return
compressed_data
;
//? return
NULL; // Does here return compressed_data?
return
NULL
;
// Does here return compressed_data?
}
...
...
This diff is collapsed.
Click to expand it.
FileIO/RapidXmlIO/RapidVtuInterface.h
+
1
−
1
View file @
7a2340db
...
...
@@ -77,7 +77,7 @@ private:
/// Construct an Element-object from the data given to the method and the data at the current stream position.
static
MeshLib
::
Element
*
readElement
(
std
::
stringstream
&
iss
,
const
std
::
vector
<
MeshLib
::
Node
*>
&
nodes
,
unsigned
material
,
unsigned
type
);
static
char
*
uncompressData
(
const
rapidxml
::
xml_node
<>*
node
);
static
unsigned
char
*
uncompressData
(
const
rapidxml
::
xml_node
<>*
node
);
bool
_use_compressor
;
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment