mirror of
https://github.com/vgough/encfs.git
synced 2025-01-17 19:39:24 +01:00
13 lines
208 B
C++
13 lines
208 B
C++
|
#include <boost/container/deque.hpp>
|
||
|
|
||
|
#include "easylogging++.h"
|
||
|
|
||
|
INITIALIZE_EASYLOGGINGPP
|
||
|
|
||
|
int main(void) {
|
||
|
boost::container::deque<int> d(3, 100);
|
||
|
d.at(1) = 200;
|
||
|
d.at(2) = 20;
|
||
|
LOG(INFO) << d;
|
||
|
}
|