Skip to content

Commit caf15b6

Browse files
authored
Remove incorrect OIIO_API from inline method declaration (#3578)
This was causing build issues on MinGW.
1 parent e64b2cb commit caf15b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/include/OpenImageIO/imagebuf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1299,7 +1299,7 @@ class OIIO_API ImageBuf {
12991299
pos(m_x, m_y, m_z);
13001300
}
13011301
/// Increment to the next pixel in the region.
1302-
void OIIO_API operator++(int) { ++(*this); }
1302+
void operator++(int) { ++(*this); }
13031303

13041304
/// Return the iteration range
13051305
ROI range() const

0 commit comments

Comments
 (0)