From aa9981f20546236523e736e4e22f6364bee9b0cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 2 Aug 2015 19:49:58 +0200 Subject: [PATCH] This function is used also outside of this file. I'm not sure why this fails only in the CI. --- src/Magnum/AbstractTexture.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Magnum/AbstractTexture.cpp b/src/Magnum/AbstractTexture.cpp index efc6e42c6..3ce8a98c8 100644 --- a/src/Magnum/AbstractTexture.cpp +++ b/src/Magnum/AbstractTexture.cpp @@ -224,7 +224,7 @@ AbstractTexture::~AbstractTexture() { glDeleteTextures(1, &_id); } -inline void AbstractTexture::createIfNotAlready() { +void AbstractTexture::createIfNotAlready() { if(_flags & ObjectFlag::Created) return; /* glGen*() does not create the object, just reserves the name. Some