watery01 / libyuv

Automatically exported from code.google.com/p/libyuv
0 stars 0 forks source link

int64 type clash #180

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
libyuv clashes with external types on 64 bit.

third_party/libyuv/files/include/libyuv/basic_types.h:34:23: error: typedef 
redefinition with different types ('unsigned long' vs 'unsigned long long')
typedef unsigned long uint64;  // NOLINT
                     ^
./base/integral_types.h:43:28: note: previous definition is here
typedef unsigned long long uint64;
                         ^

Original issue reported on code.google.com by fbarch...@chromium.org on 30 Jan 2013 at 11:49

GoogleCodeExporter commented 9 years ago
Fixed in r558.

Original comment by fbarch...@google.com on 5 Feb 2013 at 2:47