boost/libs/coroutine/example/asymmetric/X.h
2022-12-15 23:45:23 +08:00

14 lines
105 B
C

#ifndef X_H
#define X_H
struct X
{
int i;
X( int i_) :
i( i_)
{}
};
#endif // X_H