Fix header file includes

This commit is contained in:
John Wellbelove 2022-05-16 20:56:44 +01:00
parent 0d4c663d0b
commit 232f329867
4 changed files with 4 additions and 4 deletions

View File

@ -26,4 +26,4 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
******************************************************************************/
#include <etl/delegate.h>
#include <etl/private/delegate_cpp11.h>

View File

@ -26,4 +26,4 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
******************************************************************************/
#include <etl/delegate_cpp03.h>
#include <etl/private/delegate_cpp03.h>

View File

@ -26,4 +26,4 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
******************************************************************************/
#include <etl/private/variant_old.h>
#include <etl/private/variant_legacy.h>

View File

@ -69,7 +69,7 @@ namespace
char* Ptr(int i)
{
return reinterpret_cast<char*>(i);
return reinterpret_cast<char*>(uintptr_t(i));
}
std::aligned_storage_t<Size, Alignment> buffer;