mirror of
https://github.com/vgough/encfs.git
synced 2024-12-02 12:53:12 +01:00
11 lines
199 B
C++
11 lines
199 B
C++
|
#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;
|
||
|
}
|