...
Code Block | ||||
---|---|---|---|---|
| ||||
const int n = 42;
int g(const int &lhs, const int &rhs);
inline int f(int k) {
return g(k, n);
} |
...
Code Block | ||||
---|---|---|---|---|
| ||||
const int n = 42;
int g(int lhs, int rhs);
inline int f(int k) {
return g(k, n);
} |
...
Code Block | ||||
---|---|---|---|---|
| ||||
enum Constants {
N = 42
};
int g(const int &lhs, const int &rhs);
inline int f(int k) {
return g(k, N);
} |
...