General tidying, addressing issues found by static analysis tool.

This commit is contained in:
Nav
2021-06-22 23:52:31 +01:00
parent 69cee4d579
commit d365f6348b
151 changed files with 386 additions and 420 deletions

View File

@@ -7,9 +7,9 @@ namespace Bloom::Targets::Microchip::Avr::Avr8Bit
class Tiny: public Avr8
{
public:
Tiny(const Avr8& avr8): Avr8(avr8) {};
explicit Tiny(const Avr8& avr8): Avr8(avr8) {};
virtual bool supportsPromotion() override {
bool supportsPromotion() override {
return false;
}
};