[NFC] Appease clang-tidy.

This commit is contained in:
David Chisnall
2019-07-10 11:22:24 +01:00
parent ccaae50dd4
commit d83828c537
3 changed files with 5 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
#pragma once
#include "ds/defines.h"
#include "../ds/defines.h"
#include <cstdint>
@@ -55,7 +55,7 @@ namespace snmalloc
}
};
}
} // namespace snmalloc
#ifdef PLATFORM_IS_X86
# include "aal_x86.h"
@@ -64,7 +64,7 @@ namespace snmalloc
namespace snmalloc
{
using AAL = AAL_Generic<AAL_Arch>;
}
} // namespace snmalloc
#if defined(_MSC_VER) && defined(SNMALLOC_VA_BITS_32)
# include <intsafe.h>

View File

@@ -109,4 +109,4 @@ namespace snmalloc
};
using AAL_Arch = AAL_x86;
}
} // namespace snmalloc

View File

@@ -5,7 +5,7 @@
// #define USE_LZCNT
#include "aal/aal.h"
#include "../aal/aal.h"
#include "address.h"
#include "defines.h"