We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8dcded commit df59774Copy full SHA for df59774
cores/esp8266/esp_priv.h
@@ -23,9 +23,8 @@
23
24
#if defined(CORE_MOCK)
25
26
-constexpr bool __byteAddressable(const void* addr)
+constexpr bool __byteAddressable(const void*)
27
{
28
- (void)addr;
29
return true;
30
}
31
@@ -34,7 +33,7 @@ constexpr bool __byteAddressable(const void* addr)
34
33
#include <sys/config.h>
35
36
// returns true when addr can be used without "pgm_" functions or non32xfer service
37
+inline bool __byteAddressable(const void* addr)
38
39
return addr < (const void*)(XCHAL_DATARAM0_VADDR + XCHAL_DATARAM0_SIZE);
40
0 commit comments