Attempt to improve compatibility with old compilers.

This commit is contained in:
David Given
2019-02-15 11:14:17 +01:00
parent da86360a52
commit 5366a5c9be
2 changed files with 3 additions and 2 deletions

View File

@@ -5,8 +5,9 @@ class Sector;
class SectorSet
{
private:
public:
typedef std::tuple<int, int, int> key_t;
public:
static key_t keyof(int track, int head, int sector)
{ return std::tuple<int, int, int>(track, head, sector); }