User story #177
Refactor static const members
0%
Description
Refactor v0.2 code which relied in class static const member variables to define constants.
The original idea was to use this strategy as a way to impose a namespace. The downside of this is that it can give rise to static initialisation order problems (e.g. if these are used in the constructor of static objects). Moreover these symbols will also have to be exported which in some embedded systems might give rise to performance problems.
It was agreed that these variables will be replaced by static const in the header files and put inside an equivalent namespace name.
Source code files modified¶
- Source/Core/L0Portability/BasicConsole.h
- Source/Core/L0Portability/OperatingSystem/Linux/BasicConsoleOS.cpp
- Source/Core/L0Portability/OperatingSystem/Windows/BasicConsoleOS.cpp
Architecture & design review¶
Date of the review: as per #142.
Person who did the review: N/A
Version of architecture & design document: N/A
Result of review: N/A
List of non-conformities: N/A
Code and documentation review¶
Date of the review: 20/08/2015.
Person who did the review: Andre' Neto
Result of review: PASS
List of non-conformities:
Unit test review¶
Date of the review: 22/08/2015
Person who did the review: Andre' Neto
Result of coverage tests review: PASS
Result of functional tests review: PASS
Result of review: PASS
List of non-conformities:
History
#1 Updated by Riccardo Vitelli over 9 years ago
- Assignee set to Giuseppe Ferro
#2 Updated by Riccardo Vitelli over 9 years ago
- Status changed from New to Code: Impl
#3 Updated by Giuseppe Ferro over 9 years ago
Code Implementation done: ea7c104
#4 Updated by Giuseppe Ferro over 9 years ago
- Status changed from Code: Impl to Code: Rev
#5 Updated by Giuseppe Ferro over 9 years ago
- Assignee deleted (
Giuseppe Ferro)
#6 Updated by André Neto over 9 years ago
- Assignee set to André Neto
#7 Updated by André Neto over 9 years ago
- Description updated (diff)
#8 Updated by André Neto over 9 years ago
- Status changed from Code: Rev to Code: Impl
#9 Updated by André Neto over 9 years ago
- Assignee deleted (
André Neto)
#10 Updated by Riccardo Vitelli over 9 years ago
- Status changed from Code: Impl to Code: Rev
#11 Updated by André Neto over 9 years ago
- Status changed from Code: Rev to Code: Impl
#12 Updated by André Neto over 9 years ago
- Status changed from Code: Impl to Code: Rev
#13 Updated by André Neto over 9 years ago
- Assignee set to André Neto
#14 Updated by André Neto over 9 years ago
- Description updated (diff)
#15 Updated by André Neto over 9 years ago
- Status changed from Code: Rev to Code: Impl
#16 Updated by André Neto over 9 years ago
- Assignee deleted (
André Neto)
#17 Updated by Giuseppe Ferro over 9 years ago
- Assignee set to Giuseppe Ferro
#18 Updated by Giuseppe Ferro over 9 years ago
Changed FastMath class to namespace: 728629e
#19 Updated by Giuseppe Ferro over 9 years ago
- Status changed from Code: Impl to Code: Rev
- Assignee deleted (
Giuseppe Ferro)
#20 Updated by André Neto over 9 years ago
- Description updated (diff)
- Status changed from Code: Rev to Closed
Merged with develop in commit 351a835
List of changes:
-Declared osHighResolutionTimerCalibrator as extern in
HighResolutionTimerOS.h and defined in
HighResolutionTimerCalibratorOS.cpp (MISRA compliant because global
variable)
-Declared processorVendorId as extern in ProcessorA.h and defined in
ProcessorOS.cpp (MISRA compliant because global variable)
-Included directly the Architecture header files for inline
implementations of Endianity and Atomic Functions.
-Moved BasicConsole::Mode outside of the class with the namespace
BasicConsoleMode.
User Stories #168 #177