Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/bossa
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2021-11-08 18:08:37 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-11-08 18:08:37 +0300
commitb6b01e7dee090ab8e7bce9bd0694a58f2474e8b7 (patch)
tree9e5ac7a04b1dd1b9f55986751fc4a8d45094c492 /src/bossa
parent650206683469e979f135a80efb10557488da566f (diff)
Fixes for static analysis
Diffstat (limited to 'src/bossa')
-rw-r--r--src/bossa/Device.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bossa/Device.h b/src/bossa/Device.h
index 452e3ae9..0dfc352a 100644
--- a/src/bossa/Device.h
+++ b/src/bossa/Device.h
@@ -83,13 +83,13 @@ public:
Family getFamily() noexcept { return _family; }
- BossaFlash* null getFlash() noexcept { return _flash; }
+ BossaFlash *_ecv_from null getFlash() noexcept { return _flash; }
void reset() THROWS(GCodeException);
private:
Samba& _samba;
- BossaFlash* null _flash;
+ BossaFlash *_ecv_from null _flash;
Family _family;
#if ORIGINAL_BOSSA_CODE