mirror of
https://github.com/MariaDB/server.git
synced 2025-10-27 17:08:14 +01:00
This is allowed:
STRING_WITH_LEN("string literal")
This is not:
char *str = "pointer to string";
... STRING_WITH_LEN(str) ..
In C++ this is also allowed:
const char str[] = "string literal";
... STRING_WITH_LEN(str) ...
|
||
|---|---|---|
| .. | ||
| tests | ||
| CMakeLists.txt | ||
| file.cc | ||
| huge_page_detection.cc | ||
| memory.cc | ||
| memory.h | ||
| os_malloc.cc | ||
| portability.cc | ||
| toku_assert.cc | ||
| toku_assert.h | ||
| toku_atomic.h | ||
| toku_byteswap.h | ||
| toku_config.h.in | ||
| toku_crash.cc | ||
| toku_crash.h | ||
| toku_debug_sync.h | ||
| toku_htod.h | ||
| toku_htonl.h | ||
| toku_instr_mysql.cc | ||
| toku_instr_mysql.h | ||
| toku_instrumentation.h | ||
| toku_list.h | ||
| toku_os.h | ||
| toku_os_types.h | ||
| toku_path.cc | ||
| toku_path.h | ||
| toku_portability.h | ||
| toku_pthread.cc | ||
| toku_pthread.h | ||
| toku_race_tools.h | ||
| toku_random.h | ||
| toku_stdint.h | ||
| toku_stdlib.h | ||
| toku_time.cc | ||
| toku_time.h | ||