pg-libphonenumber/tools/get_sizeof_phone_number.cpp

9 lines
166 B
C++
Raw Normal View History

#include <iostream>
2017-02-18 17:46:11 +00:00
#include "short_phone_number.h"
int main(int argc, const char** argv) {
2017-02-18 17:11:41 +00:00
std::cout << sizeof(ShortPhoneNumber) << std::endl;
return 0;
}