chore: clean up stb includes (#919)

This commit is contained in:
Wagner Bruna
2025-10-28 12:25:45 -03:00
committed by GitHub
parent 9e28be6479
commit 8a45d0ff7f
2 changed files with 3 additions and 14 deletions

View File

@@ -26,9 +26,6 @@
#include "ggml.h"
#include "stable-diffusion.h"
#define STB_IMAGE_RESIZE_IMPLEMENTATION
#include "stb_image_resize.h"
bool ends_with(const std::string& str, const std::string& ending) {
if (str.length() >= ending.length()) {
return (str.compare(str.length() - ending.length(), ending.length(), ending) == 0);