Get Mac building. Unused variable in boost and missing return
value which wasn't caught in other environments.master
parent
c09669da92
commit
88bc54192f
|
|
@ -58,6 +58,11 @@ set(llcorehttp_HEADER_FILES
|
|||
|
||||
set_source_files_properties(${llcorehttp_HEADER_FILES}
|
||||
PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
if (APPLE)
|
||||
# Boost headers define unused members so...
|
||||
set_source_files_properties(${llcorehttp_SOURCE_FILES}
|
||||
PROPERTIES COMPILE_FLAGS -Wno-unused-variable)
|
||||
endif (APPLE)
|
||||
|
||||
list(APPEND llcorehttp_SOURCE_FILES ${llcorehttp_HEADER_FILES})
|
||||
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@ public:
|
|||
|
||||
inline bool joinable() const
|
||||
{
|
||||
mThread->joinable();
|
||||
return mThread->joinable();
|
||||
}
|
||||
|
||||
private:
|
||||
|
|
|
|||
Loading…
Reference in New Issue