Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bill Lorensen
VTK
Commits
45b0c171
Commit
45b0c171
authored
May 01, 2012
by
Dave DeMarle
Browse files
fix signed vs unsigned compilation warning
Change-Id: Ib46fd747a84cfad2015d8d1a2d765f378762c26a
parent
b6354b85
Changes
2
Hide whitespace changes
Inline
Side-by-side
Chemistry/vtkAbstractElectronicData.h
View file @
45b0c171
...
...
@@ -35,7 +35,7 @@ public:
// Description:
// Returns the number of electrons in the molecule.
virtual
unsigned
int
GetNumberOfElectrons
()
=
0
;
virtual
vtkIdType
GetNumberOfElectrons
()
=
0
;
// Description:
// Returns the vtkImageData for the requested molecular orbital.
...
...
Chemistry/vtkProgrammableElectronicData.h
View file @
45b0c171
...
...
@@ -41,8 +41,8 @@ public:
// Description:
// Get/Set the number of electrons in the molecule. Needed for HOMO/LUMO
// convenience functions
vtkGetMacro
(
NumberOfElectrons
,
unsigned
int
);
vtkSetMacro
(
NumberOfElectrons
,
unsigned
int
);
vtkGetMacro
(
NumberOfElectrons
,
vtkIdType
);
vtkSetMacro
(
NumberOfElectrons
,
vtkIdType
);
// Description:
// Get/Set the vtkImageData for the requested molecular orbital.
...
...
Write
Preview
Supports
Markdown
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