Sha256: d1abe4c0318d1da7c9384e5ca2f1dfa4eeea6ffb2eb77643792f4fb583572422
Contents?: true
Size: 652 Bytes
Versions: 8
Compression:
Stored size: 652 Bytes
Contents
#include <msgpack.hpp> #include <gtest/gtest.h> TEST(version, print) { printf("MSGPACK_VERSION : %s\n", MSGPACK_VERSION); printf("MSGPACK_VERSION_MAJOR : %d\n", MSGPACK_VERSION_MAJOR); printf("MSGPACK_VERSION_MINOR : %d\n", MSGPACK_VERSION_MINOR); printf("MSGPACK_VERSION_REVISION : %d\n", MSGPACK_VERSION_REVISION); printf("msgpack_version() : %s\n", msgpack_version()); printf("msgpack_version_major() : %d\n", msgpack_version_major()); printf("msgpack_version_minor() : %d\n", msgpack_version_minor()); printf("msgpack_version_revision() : %d\n", msgpack_version_revision()); }
Version data entries
8 entries across 8 versions & 1 rubygems