Преглед на файлове

Make release builds work

Since release builds had -Werror on, every warning is counted as an error, and the #pragmas that supressed that warning caused a wrning them selfs.
tags/v1.8.0
Xerbo преди 3 години
родител
ревизия
06571464fe
променени са 2 файла, в които са добавени 1 реда и са изтрити 4 реда
  1. +1
    -1
      CMakeLists.txt
  2. +0
    -3
      src/pngio.c

+ 1
- 1
CMakeLists.txt Целия файл

@@ -14,7 +14,7 @@ target_link_libraries(aptdec PRIVATE m)

# Throw errors on warnings on release builds
if(CMAKE_BUILD_TYPE MATCHES "Release")
target_compile_options(aptdec PRIVATE -Wall -Wextra -pedantic -Werror)
target_compile_options(aptdec PRIVATE -Wall -Wextra -pedantic -Wno-missing-field-initializers -Werror)
else()
target_compile_options(aptdec PRIVATE -Wall -Wextra -pedantic)
endif()


+ 0
- 3
src/pngio.c Целия файл

@@ -26,9 +26,6 @@

#include "pngio.h"

#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#pragma clang diagnostic ignored "-Wmissing-field-initializers"

int mapOverlay(char *filename, rgb_t **crow, int nrow, int zenith, int MCIR) {
FILE *fp = fopen(filename, "rb");
if(!fp) {


Зареждане…
Отказ
Запис