Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
CLHEP
CLHEP
Commits
e348d3b3
Commit
e348d3b3
authored
Nov 08, 2012
by
Lynn Garren
Browse files
cleanup gcc 4.7 warnings
parent
a0d04f78
Changes
4
Hide whitespace changes
Inline
Side-by-side
GenericFunctions/GenericFunctions/ButcherTableau.hh
View file @
e348d3b3
...
...
@@ -31,10 +31,10 @@ namespace Genfun {
inline
const
std
::
string
&
name
()
const
;
// Returns the order:
inline
const
unsigned
int
order
()
const
;
inline
unsigned
int
order
()
const
;
// Returns the number of steps:
inline
const
unsigned
int
nSteps
()
const
;
inline
unsigned
int
nSteps
()
const
;
// Write access to elements:
inline
double
&
A
(
unsigned
int
i
,
unsigned
int
j
);
...
...
GenericFunctions/GenericFunctions/ButcherTableau.icc
View file @
e348d3b3
...
...
@@ -9,13 +9,13 @@ namespace Genfun {
const
unsigned int ButcherTableau::order() const{
unsigned int ButcherTableau::order() const{
return _order;
}
const
unsigned int ButcherTableau::nSteps() const{
unsigned int ButcherTableau::nSteps() const{
return _A.size();
}
...
...
GenericFunctions/GenericFunctions/ExtendedButcherTableau.hh
View file @
e348d3b3
...
...
@@ -32,13 +32,13 @@ namespace Genfun {
inline
const
std
::
string
&
name
()
const
;
// Returns the order of the main formula
inline
const
unsigned
int
order
()
const
;
inline
unsigned
int
order
()
const
;
// Returns the order of the controlling formula
inline
const
unsigned
int
orderHat
()
const
;
inline
unsigned
int
orderHat
()
const
;
// Returns the number of steps:
inline
const
unsigned
int
nSteps
()
const
;
inline
unsigned
int
nSteps
()
const
;
// Write access to elements:
inline
double
&
A
(
unsigned
int
i
,
unsigned
int
j
);
...
...
GenericFunctions/GenericFunctions/ExtendedButcherTableau.icc
View file @
e348d3b3
...
...
@@ -13,17 +13,17 @@ namespace Genfun {
const
unsigned int ExtendedButcherTableau::order() const{
unsigned int ExtendedButcherTableau::order() const{
return _order;
}
const
unsigned int ExtendedButcherTableau::orderHat() const{
unsigned int ExtendedButcherTableau::orderHat() const{
return _orderHat;
}
const
unsigned int ExtendedButcherTableau::nSteps() const{
unsigned int ExtendedButcherTableau::nSteps() const{
return _A.size();
}
...
...
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