Skip to content

Commit

Permalink
Fixed some compilation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
bcmpinc committed Jul 5, 2021
1 parent 20247ce commit 46120f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/engine/octree_draw.cpp
Expand Up @@ -19,7 +19,7 @@
#include <cstdio>
#include <cassert>
#include <algorithm>
#include <xmmintrin.h>
#include <smmintrin.h>

#include "quadtree.h"
#include "timing.h"
Expand Down
2 changes: 1 addition & 1 deletion src/engine/surface.cpp
Expand Up @@ -82,7 +82,7 @@ void surface::export_png(const char * out) {
png_destroy_write_struct(&png_ptr, &info_ptr);
}
#else
void export_png(const char * out) {}
void surface::export_png(const char * out) {}
#endif

void surface::pixel(uint32_t x, uint32_t y, uint32_t c) {
Expand Down

0 comments on commit 46120f9

Please sign in to comment.