misc: Appease clang...again
Once again, clang is having issues with recently committed code. Unfortunately HSAIL_X86 is still broken.
This commit is contained in:
parent
d9193d1b20
commit
4b802a09c5
3 changed files with 9 additions and 9 deletions
|
@ -87,10 +87,10 @@ class RawDiskImage : public DiskImage
|
||||||
void close();
|
void close();
|
||||||
void open(const std::string &filename, bool rd_only = false);
|
void open(const std::string &filename, bool rd_only = false);
|
||||||
|
|
||||||
virtual std::streampos size() const;
|
std::streampos size() const override;
|
||||||
|
|
||||||
virtual std::streampos read(uint8_t *data, std::streampos offset) const;
|
std::streampos read(uint8_t *data, std::streampos offset) const override;
|
||||||
virtual std::streampos write(const uint8_t *data, std::streampos offset);
|
std::streampos write(const uint8_t *data, std::streampos offset) override;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -83,7 +83,7 @@ class ThermalDomain : public SimObject, public ThermalEntity
|
||||||
|
|
||||||
/** Get nodal equation imposed by this node */
|
/** Get nodal equation imposed by this node */
|
||||||
LinearEquation getEquation(ThermalNode * tn, unsigned n,
|
LinearEquation getEquation(ThermalNode * tn, unsigned n,
|
||||||
double step) const;
|
double step) const override;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Emit a temperature update through probe points interface
|
* Emit a temperature update through probe points interface
|
||||||
|
@ -95,7 +95,7 @@ class ThermalDomain : public SimObject, public ThermalEntity
|
||||||
*/
|
*/
|
||||||
void setSubSystem(SubSystem * ss);
|
void setSubSystem(SubSystem * ss);
|
||||||
|
|
||||||
void regStats();
|
void regStats() override;
|
||||||
void serialize(CheckpointOut &cp) const override;
|
void serialize(CheckpointOut &cp) const override;
|
||||||
void unserialize(CheckpointIn &cp) override;
|
void unserialize(CheckpointIn &cp) override;
|
||||||
|
|
||||||
|
|
|
@ -90,7 +90,7 @@ class ThermalResistor : public SimObject, public ThermalEntity
|
||||||
}
|
}
|
||||||
|
|
||||||
LinearEquation getEquation(ThermalNode * tn, unsigned n,
|
LinearEquation getEquation(ThermalNode * tn, unsigned n,
|
||||||
double step) const;
|
double step) const override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
/* Resistance value in K/W */
|
/* Resistance value in K/W */
|
||||||
|
@ -114,7 +114,7 @@ class ThermalCapacitor : public SimObject, public ThermalEntity
|
||||||
void unserialize(CheckpointIn &cp) override;
|
void unserialize(CheckpointIn &cp) override;
|
||||||
|
|
||||||
LinearEquation getEquation(ThermalNode * tn, unsigned n,
|
LinearEquation getEquation(ThermalNode * tn, unsigned n,
|
||||||
double step) const;
|
double step) const override;
|
||||||
|
|
||||||
void setNodes(ThermalNode * n1, ThermalNode * n2) {
|
void setNodes(ThermalNode * n1, ThermalNode * n2) {
|
||||||
node1 = n1;
|
node1 = n1;
|
||||||
|
@ -143,7 +143,7 @@ class ThermalReference : public SimObject, public ThermalEntity
|
||||||
}
|
}
|
||||||
|
|
||||||
LinearEquation getEquation(ThermalNode * tn, unsigned n,
|
LinearEquation getEquation(ThermalNode * tn, unsigned n,
|
||||||
double step) const;
|
double step) const override;
|
||||||
|
|
||||||
void serialize(CheckpointOut &cp) const override;
|
void serialize(CheckpointOut &cp) const override;
|
||||||
void unserialize(CheckpointIn &cp) override;
|
void unserialize(CheckpointIn &cp) override;
|
||||||
|
@ -176,7 +176,7 @@ class ThermalModel : public ClockedObject
|
||||||
|
|
||||||
double getTemp() const;
|
double getTemp() const;
|
||||||
|
|
||||||
void startup();
|
void startup() override;
|
||||||
void doStep();
|
void doStep();
|
||||||
|
|
||||||
void serialize(CheckpointOut &cp) const override;
|
void serialize(CheckpointOut &cp) const override;
|
||||||
|
|
Loading…
Reference in a new issue