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:
Andreas Hansson 2016-04-12 05:28:39 -04:00
parent d9193d1b20
commit 4b802a09c5
3 changed files with 9 additions and 9 deletions

View file

@ -87,10 +87,10 @@ class RawDiskImage : public DiskImage
void close();
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;
virtual std::streampos write(const uint8_t *data, std::streampos offset);
std::streampos read(uint8_t *data, std::streampos offset) const override;
std::streampos write(const uint8_t *data, std::streampos offset) override;
};
/**

View file

@ -83,7 +83,7 @@ class ThermalDomain : public SimObject, public ThermalEntity
/** Get nodal equation imposed by this node */
LinearEquation getEquation(ThermalNode * tn, unsigned n,
double step) const;
double step) const override;
/**
* Emit a temperature update through probe points interface
@ -95,7 +95,7 @@ class ThermalDomain : public SimObject, public ThermalEntity
*/
void setSubSystem(SubSystem * ss);
void regStats();
void regStats() override;
void serialize(CheckpointOut &cp) const override;
void unserialize(CheckpointIn &cp) override;

View file

@ -90,7 +90,7 @@ class ThermalResistor : public SimObject, public ThermalEntity
}
LinearEquation getEquation(ThermalNode * tn, unsigned n,
double step) const;
double step) const override;
private:
/* Resistance value in K/W */
@ -114,7 +114,7 @@ class ThermalCapacitor : public SimObject, public ThermalEntity
void unserialize(CheckpointIn &cp) override;
LinearEquation getEquation(ThermalNode * tn, unsigned n,
double step) const;
double step) const override;
void setNodes(ThermalNode * n1, ThermalNode * n2) {
node1 = n1;
@ -143,7 +143,7 @@ class ThermalReference : public SimObject, public ThermalEntity
}
LinearEquation getEquation(ThermalNode * tn, unsigned n,
double step) const;
double step) const override;
void serialize(CheckpointOut &cp) const override;
void unserialize(CheckpointIn &cp) override;
@ -176,7 +176,7 @@ class ThermalModel : public ClockedObject
double getTemp() const;
void startup();
void startup() override;
void doStep();
void serialize(CheckpointOut &cp) const override;