Added some travis ci target + corrected some warnings

This commit is contained in:
emeric
2020-10-31 22:33:01 +01:00
parent 45b6f67896
commit 8520ca5c0f
17 changed files with 108 additions and 51 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ target_link_libraries(lmsutils PRIVATE
target_link_libraries(lmsutils PUBLIC
Boost::system
std::filesystem
wt
Wt::Wt
)
install(TARGETS lmsutils DESTINATION lib)
+1 -3
View File
@@ -35,9 +35,8 @@ namespace Zip
class ZipHeader
{
public:
constexpr ZipHeader(std::byte* buffer, SizeType bufferSize)
constexpr ZipHeader(std::byte* buffer, SizeType)
: _buffer {buffer}
, _bufferSize {bufferSize}
{}
enum GeneralPurposeFlag : std::uint16_t
@@ -71,7 +70,6 @@ namespace Zip
private:
std::byte* _buffer {};
const SizeType _bufferSize {};
};
void