hi, 

template< typename T >
class Static_object
{
public:
....
  template< typename... A >
  T *construct(A&&... args)
  { return new (_i) T(cxx::forward<A>(args)...); }
...
};

this template class is defined in fiasco/src/types.h, what does the method 'construct' mean?
i have tried to move this class to eclipse cdt project, but it can not be compiled correctly. how does this class be compiled in fiasco?