Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openstructure
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Analyze
Contributor analytics
Repository analytics
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
schwede
openstructure
Commits
b9d4baf4
Commit
b9d4baf4
authored
12 years ago
by
Andreas Schenk
Browse files
Options
Downloads
Patches
Plain Diff
fixed two infinite recursions
parent
a17c2e67
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
modules/gfx/src/gfx_node.cc
+1
-1
1 addition, 1 deletion
modules/gfx/src/gfx_node.cc
modules/mol/base/src/chem_type.hh
+1
-1
1 addition, 1 deletion
modules/mol/base/src/chem_type.hh
with
2 additions
and
2 deletions
modules/gfx/src/gfx_node.cc
+
1
−
1
View file @
b9d4baf4
...
@@ -141,7 +141,7 @@ bool GfxNode::IsAttachedToScene() const
...
@@ -141,7 +141,7 @@ bool GfxNode::IsAttachedToScene() const
void
GfxNode
::
Add
(
GfxObjP
obj
)
void
GfxNode
::
Add
(
GfxObjP
obj
)
{
{
GfxNodeP
node
=
obj
;
GfxNodeP
node
=
obj
;
this
->
Add
(
obj
);
this
->
Add
(
node
);
}
}
void
GfxNode
::
Remove
(
GfxObjP
obj
)
void
GfxNode
::
Remove
(
GfxObjP
obj
)
...
...
This diff is collapsed.
Click to expand it.
modules/mol/base/src/chem_type.hh
+
1
−
1
View file @
b9d4baf4
...
@@ -52,7 +52,7 @@ struct ChemType {
...
@@ -52,7 +52,7 @@ struct ChemType {
}
}
bool
operator
!=
(
const
ChemType
&
cc
)
const
{
bool
operator
!=
(
const
ChemType
&
cc
)
const
{
return
this
->
operator
!=
(
cc
)
;
return
cc
.
chem_type_
!=
chem_type_
;
}
}
bool
IsIon
()
const
{
bool
IsIon
()
const
{
...
...
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