mirror of
https://github.com/vgough/encfs.git
synced 2024-11-26 18:03:37 +01:00
5f0806c5cc
git-vendor-name: easylogging git-vendor-dir: vendor/github.com/muflihun/easyloggingpp git-vendor-repository: https://github.com/muflihun/easyloggingpp git-vendor-ref: master
19 lines
327 B
C++
19 lines
327 B
C++
#include <boost/container/set.hpp>
|
|
#include <boost/container/flat_set.hpp>
|
|
|
|
#include "easylogging++.h"
|
|
|
|
INITIALIZE_EASYLOGGINGPP
|
|
|
|
int main(void) {
|
|
boost::container::set<int> s;
|
|
s.insert(4);
|
|
s.insert(5);
|
|
LOG(INFO) << s;
|
|
|
|
boost::container::flat_set<int> fs;
|
|
fs.insert(1);
|
|
fs.insert(2);
|
|
LOG(INFO) << fs;
|
|
}
|