Investigate include order issue with InputBuffer
, readData
#4262
Labels
Area-CodeHealth
Issues related to code cleanliness, linting, rules, warnings, errors, static analysis, etc.
Help Wanted
We encourage anyone to jump in on these.
Issue-Task
It's a feature request, but it doesn't really need a major design.
Priority-3
A description (P3)
Product-Conhost
For issues in the Console codebase
Milestone
Found in #4213.
I had to fwddecl
InputBuffer
, because I think there's a include order problem with inInputBuffer.hpp
andreadData.hpp
.readData.hpp
usesInputBuffer
in a bunch of places, but doesn't include it firstInputBuffer.hpp
includesreadData.hpp
before it definesInputBuffer
So if you try to
You'll get a compilation error, because it'll include
readData
, which will assumeInputBuffer
is defined, which it isn't yet.The text was updated successfully, but these errors were encountered: