Missing 'template' keyword prior to dependent template name 'read'
ryandesign opened this issue · 2 comments
ryandesign commented
I can't build the latest code from master using Xcode 14.2 on macOS Monterey 12.7.1 because of these errors:
Machines/PCCompatible/PCCompatible.cpp:882:41 Missing 'template' keyword prior to dependent template name 'read'
Machines/PCCompatible/PCCompatible.cpp:883:41 Missing 'template' keyword prior to dependent template name 'read'
Machines/PCCompatible/PCCompatible.cpp:884:41 Missing 'template' keyword prior to dependent template name 'read'
Machines/PCCompatible/PCCompatible.cpp:885:41 Missing 'template' keyword prior to dependent template name 'read'
Machines/PCCompatible/PCCompatible.cpp:886:41 Missing 'template' keyword prior to dependent template name 'read'
Machines/PCCompatible/PCCompatible.cpp:887:41 Missing 'template' keyword prior to dependent template name 'read'
Machines/PCCompatible/PCCompatible.cpp:888:41 Missing 'template' keyword prior to dependent template name 'read'
Machines/PCCompatible/PCCompatible.cpp:889:41 Missing 'template' keyword prior to dependent template name 'read'
on these lines:
CLK/Machines/PCCompatible/PCCompatible.cpp
Lines 882 to 889 in ad9e0b6
TomHarte commented
I'm curious whether these are secondary to the inability to parse DMA caused by my previous lack of a #include <array>
; DMA
is named as a concrete class to the offender, IO
, so shouldn't be a dependent template.
I guess we'll see.
ryandesign commented
Yes, thank you, #1236 fixed this as well. master builds again with Xcode 14.2 now.