3
0
mirror of https://github.com/triqs/dft_tools synced 2025-01-13 14:29:01 +01:00

8 lines
82 B
C++
Raw Normal View History

#include <vector>
struct Obj1 {
std::vector<double> V;
Obj1() : V(10000){}
};