1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-29 16:55:59 +00:00

Ensure normative construction declaration ordering.

This commit is contained in:
Thomas Harte 2020-03-19 18:58:36 -04:00
parent 9995d776de
commit b8ebdc012f
2 changed files with 3 additions and 3 deletions

View File

@ -35,8 +35,8 @@ class Machine {
bool automatic_tape_motor_control;
Options(Configurable::OptionsType type):
automatic_tape_motor_control(type == Configurable::OptionsType::UserFriendly),
Configurable::QuickloadOption<Options>(type == Configurable::OptionsType::UserFriendly) {
Configurable::QuickloadOption<Options>(type == Configurable::OptionsType::UserFriendly),
automatic_tape_motor_control(type == Configurable::OptionsType::UserFriendly) {
// Declare fields if necessary.
if(needs_declare()) {

View File

@ -67,7 +67,7 @@
</Testables>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
buildConfiguration = "Release"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
enableASanStackUseAfterReturn = "YES"