Displaying 3 results from an estimated 3 matches for "diasupport".
2015 Dec 09
3
Include all the things
...note: previous
definition is here
typedef enum { Unknown, Prologue, Call } ParmContext;
^
In file included from src\main.cpp:1:
In file included from src/../llvm.h:298:
In file included from
\llvm\include\llvm/DebugInfo/PDB/DIA/DIADataStream.h:13:
\llvm\include\llvm/DebugInfo/PDB/DIA/DIASupport.h(30,10) : fatal error:
'cvconst.h' file not found
#include <cvconst.h>
Are there known fixes for these, or is there something I should be doing
differently?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/...
2016 Mar 11
7
Any objections to re-sorting #include lines with clang-format/clang-tidy?
The crazy clang-format folks have taught it to sort includes, and
clang-tidy has a nice way to run it across all of LLVM and Clang.
Before I just submit the fixes (and any bug reports to the clang-format
folks if it sorts things weirdly) I wanted to double check that folks would
be ok with this. My understanding is that the sorting should match the LLVM
conventions, but if not, I'll make sure
2015 Dec 09
2
Include all the things
...st ended up as
an enum by accident.
> ^
>> In file included from src\main.cpp:1:
>> In file included from src/../llvm.h:298:
>> In file included from
>> \llvm\include\llvm/DebugInfo/PDB/DIA/DIADataStream.h:13:
>> \llvm\include\llvm/DebugInfo/PDB/DIA/DIASupport.h(30,10) : fatal error:
>> 'cvconst.h' file not found
>> #include <cvconst.h>
>>
>> Are there known fixes for these, or is there something I should be doing
>> differently?
>>
>
> The first one's probably an outright ODR violation (Zach -...