forked from OSchip/llvm-project
attempt to defeat a gcc warning that is breaking a -Werror buildbot.
llvm-svn: 174825
This commit is contained in:
parent
5d020a3a31
commit
e3d3e6ab8c
|
@ -369,7 +369,7 @@ public:
|
|||
|
||||
typedef support::detail::packed_endian_specific_integral
|
||||
<word_t, support::little, support::unaligned> Endian_T;
|
||||
CurWord = *reinterpret_cast<Endian_T*>(buf);
|
||||
CurWord = *(Endian_T*)(void*)buf;
|
||||
|
||||
NextChar += sizeof(word_t);
|
||||
|
||||
|
|
Loading…
Reference in New Issue