2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-21 17:12:22 +00:00

VC++ 6.0 fixes and misc. other modifications.

[SVN r9601]
This commit is contained in:
Ralf W. Grosse-Kunstleve
2001-03-20 02:13:28 +00:00
parent db943b4109
commit 1f45a846c6
2 changed files with 5 additions and 6 deletions

View File

@@ -60,7 +60,7 @@ namespace { // Avoid cluttering the global namespace.
std::vector<MillerIndex> VMIx;
public:
void add(const MillerIndex& MIx) { VMIx.push_back(MIx); }
MillerIndex get(const std::size_t i) const { return VMIx[i]; }
MillerIndex get(std::size_t i) const { return VMIx[i]; }
};
}