Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:54:50

0001 ///////////////////////////////////////////////////////////////////////////////
0002 // Copyright (c) Lewis Baker
0003 // Licenced under MIT license. See LICENSE.txt for details.
0004 ///////////////////////////////////////////////////////////////////////////////
0005 #ifndef CPPCORO_DETAIL_VOID_VALUE_HPP_INCLUDED
0006 #define CPPCORO_DETAIL_VOID_VALUE_HPP_INCLUDED
0007 
0008 namespace cppcoro
0009 {
0010     namespace detail
0011     {
0012         struct void_value {};
0013     }
0014 }
0015 
0016 #endif