encfs/vendor/github.com/muflihun/easyloggingpp/samples/boost/string.cpp

11 lines
199 B
C++
Raw Normal View History

#include <boost/container/string.hpp>
#include "easylogging++.h"
INITIALIZE_EASYLOGGINGPP
int main(void) {
boost::container::string s = "This is boost::container::string";
LOG(INFO) << s;
}