pg-libphonenumber/get_sizeof_phone_number.cpp

9 lines
160 B
C++
Raw Normal View History

#include <iostream>
2015-07-21 17:32:30 +00:00
#include "short_phone_number.h"
int main(int argc, const char** argv) {
2015-07-21 17:32:30 +00:00
std::cout << sizeof(ShortPhoneNumber) << std::endl;
return 0;
}