Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
INMOST
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Terekhov
INMOST
Commits
f00fd658
Commit
f00fd658
authored
Apr 18, 2018
by
Kirill Terekhov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reduce verbosity
parent
bd7030d7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
Examples/OldDrawGrid/main.cpp
Examples/OldDrawGrid/main.cpp
+1
-0
Source/Mesh/mesh.cpp
Source/Mesh/mesh.cpp
+1
-1
No files found.
Examples/OldDrawGrid/main.cpp
View file @
f00fd658
...
...
@@ -420,6 +420,7 @@ void keyboard(unsigned char key, int x, int y)
if
(
oclipper
)
delete
oclipper
;
if
(
bclipper
)
delete
bclipper
;
if
(
current_picker
)
delete
current_picker
;
delete
CommonVolumetricView
;
delete
mesh
;
exit
(
-
1
);
}
...
...
Source/Mesh/mesh.cpp
View file @
f00fd658
...
...
@@ -685,7 +685,7 @@ namespace INMOST
}
Tag
Mesh
::
DeleteTag
(
Tag
tag
,
ElementType
type_mask
)
{
std
::
cout
<<
"Delete tag "
<<
tag
.
GetTagName
()
<<
" type "
<<
DataTypeName
(
tag
.
GetDataType
())
<<
" on "
;
//
std::cout << "Delete tag " << tag.GetTagName() << " type " << DataTypeName(tag.GetDataType()) << " on ";
for
(
ElementType
etype
=
NODE
;
etype
<=
MESH
;
etype
=
NextElementType
(
etype
))
if
(
(
etype
&
type_mask
)
&&
tag
.
isDefined
(
etype
)
)
std
::
cout
<<
ElementTypeName
(
etype
)
<<
" "
;
std
::
cout
<<
std
::
endl
;
//deallocate data on elements
...
...
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