Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Andrew Bauer
VTK
Commits
88f8927d
Commit
88f8927d
authored
Nov 09, 1995
by
Ken Martin
Browse files
fixed problem with sun CC compiler
parent
34d71eae
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/vtkSetGet.hh
View file @
88f8927d
...
...
@@ -90,8 +90,7 @@ type Get##name () { \
void Set##name (char* _arg) \
{ \
if (Debug) cerr << "Debug: In " __FILE__ << ", line " << __LINE__ << "\n" << this->GetClassName() << " (" << this << "): setting " << #name " to " << _arg << "\n\n"; \
if ( name && _arg ) \
if ( !strcmp(name,_arg) ) return; \
if ( name && _arg && (!strcmp(name,_arg))) return; \
if (name) delete [] name; \
if (_arg) \
{ \
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment