1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-23 02:35:57 +01:00

Fix typo in macros.h

[ci skip]
This commit is contained in:
Matias Fontanini
2016-05-05 12:40:11 -07:00
parent d7fed87ebb
commit 7f30efab38

View File

@@ -47,7 +47,7 @@
#define TINS_LIKELY(x) (x)
#define TINS_UNLIKELY(x) (x)
#else
// Not Vistual Studio. Assume this is gcc compatible
// Not Visual Studio. Assume this is gcc compatible
#define TINS_BEGIN_PACK
#define TINS_END_PACK __attribute__((packed))
#define TINS_PACKED(DECLARATION) DECLARATION __attribute__((packed))