Silenced warnings in debug build
This commit is contained in:
parent
2566943659
commit
ba50624994
|
@ -1,10 +1,14 @@
|
||||||
#include <SDL.h>
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include "uxn.h"
|
#include "uxn.h"
|
||||||
|
|
||||||
|
#pragma GCC diagnostic push
|
||||||
|
#pragma GCC diagnostic ignored "-Wpedantic"
|
||||||
|
#include <SDL.h>
|
||||||
#include "devices/ppu.h"
|
#include "devices/ppu.h"
|
||||||
#include "devices/apu.h"
|
#include "devices/apu.h"
|
||||||
|
#pragma GCC diagnostic pop
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright (c) 2021 Devine Lu Linvega
|
Copyright (c) 2021 Devine Lu Linvega
|
||||||
|
|
Loading…
Reference in New Issue