mirror of
https://github.com/triqs/dft_tools
synced 2024-11-01 03:33:50 +01:00
f2c7d449cc
for earlier commits, see TRIQS0.x repository.
8 lines
82 B
C++
8 lines
82 B
C++
#include <vector>
|
|
|
|
struct Obj1 {
|
|
std::vector<double> V;
|
|
Obj1() : V(10000){}
|
|
};
|
|
|