mirror of
https://github.com/boostorg/coroutine.git
synced 2026-01-20 16:32:33 +00:00
14 lines
105 B
C
14 lines
105 B
C
#ifndef X_H
|
|
#define X_H
|
|
|
|
struct X
|
|
{
|
|
int i;
|
|
|
|
X( int i_) :
|
|
i( i_)
|
|
{}
|
|
};
|
|
|
|
#endif // X_H
|