1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 06:38:10 +00:00
serenity/DevTools/UserspaceEmulator
Lenny Maiorani d1fe6a0b53
Everywhere: Redundant inline specifier on constexpr functions (#3807)
Problem:
- `constexpr` functions are decorated with the `inline` specifier
  keyword. This is redundant because `constexpr` functions are
  implicitly `inline`.
- [dcl.constexpr], §7.1.5/2 in the C++11 standard): "constexpr
  functions and constexpr constructors are implicitly inline (7.1.2)".

Solution:
- Remove the redundant `inline` keyword.
2020-10-20 18:08:13 +02:00
..
CMakeLists.txt UserspaceEmulator: Set the process and thread name to "(UE) Executable" 2020-07-27 19:10:18 +02:00
Emulator.cpp Use new format functions in remaining DevTools. (#3755) 2020-10-13 18:34:27 +02:00
Emulator.h UserspaceEmulator: Remove remaining printf calls. 2020-10-04 17:04:55 +02:00
main.cpp Use new format functions in remaining DevTools. (#3755) 2020-10-13 18:34:27 +02:00
MallocTracer.cpp Everywhere: Add missing <AK/TemporaryChange.h> includes 2020-10-15 23:49:53 +02:00
MallocTracer.h UserspaceEmulator: Report heap buffer overflows :^) 2020-08-01 09:44:19 +02:00
MmapRegion.cpp AK: Don't add newline for outf/dbgf/warnf. 2020-10-04 17:04:55 +02:00
MmapRegion.h UserspaceEmulator+LibX86: Add support for 64-bit memory reads and writes (#3584) 2020-09-23 20:45:43 +02:00
SharedBufferRegion.cpp UserspaceEmulator+LibX86: Add support for 64-bit memory reads and writes (#3584) 2020-09-23 20:45:43 +02:00
SharedBufferRegion.h UserspaceEmulator+LibX86: Add support for 64-bit memory reads and writes (#3584) 2020-09-23 20:45:43 +02:00
SimpleRegion.cpp UserspaceEmulator+LibX86: Add support for 64-bit memory reads and writes (#3584) 2020-09-23 20:45:43 +02:00
SimpleRegion.h UserspaceEmulator+LibX86: Add support for 64-bit memory reads and writes (#3584) 2020-09-23 20:45:43 +02:00
SoftCPU.cpp Everywhere: Redundant inline specifier on constexpr functions (#3807) 2020-10-20 18:08:13 +02:00
SoftCPU.h UserspaceEmulator+LibX86: Clean up some obnoxious template spam 2020-09-23 21:15:01 +02:00
SoftMMU.cpp AK: Don't add newline for outf/dbgf/warnf. 2020-10-04 17:04:55 +02:00
SoftMMU.h UserspaceEmulator+LibX86: Add support for 64-bit memory reads and writes (#3584) 2020-09-23 20:45:43 +02:00
ValueWithShadow.h AK+Format: Do some housekeeping in the format implementation. 2020-10-02 20:48:19 +02:00