diff options
author | Tobias Kortkamp <tobik@FreeBSD.org> | 2018-08-25 03:03:09 +0000 |
---|---|---|
committer | Tobias Kortkamp <tobik@FreeBSD.org> | 2018-08-25 03:03:09 +0000 |
commit | 557b62a1e5fdcfa68e37611e15d8fa94f4286b48 (patch) | |
tree | b3d1296b5ae848e645d78f61e5892c28a851c8b1 /biology | |
parent | emulators/quasi88: Fix build with Clang 6 (diff) |
audio/zinf: Fix build with Clang 6
src/zip_header.cpp:43:31: error: constant expression evaluates to 234 which cannot be narrowed to type 'char' [-Wc++11-narrowing]
char arjHeaderSign[3]={ 0x60,0xea, 0 };
^~~~
src/zip_header.cpp:43:31: note: insert an explicit cast to silence this issue
char arjHeaderSign[3]={ 0x60,0xea, 0 };
^~~~
static_cast<char>( )
src/zip_header.cpp:120:15: error: assigning to 'char *' from incompatible type 'char'
h->filename='\0';
^~~~
src/zip_header.cpp:282:15: error: assigning to 'char *' from incompatible type 'char'
h->filename='\0';
^~~~
http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/zinf-2.2.5_22.log
(and a lot more errors like these and std::bind and bind confusion
if one gets past these)
Notes
Notes:
svn path=/head/; revision=477990
Diffstat (limited to 'biology')
0 files changed, 0 insertions, 0 deletions