ladybird/Libraries/LibX86
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 Build: Switch to CMake :^) 2020-05-14 20:15:18 +02:00
Disassembler.h LibX86: Remove some unnecessary stuff from Disassembler.h 2020-04-11 13:23:52 +02:00
ELFSymbolProvider.h X86+Profiler+UserspaceEmulator: Deduplicate ELFSymbolProvider to LibX86 2020-08-16 19:37:58 +02:00
Instruction.cpp LibX86: clang-format 2020-10-20 08:41:59 +02:00
Instruction.h Everywhere: Redundant inline specifier on constexpr functions (#3807) 2020-10-20 18:08:13 +02:00
Interpreter.h LibX86: Disassemble most remaining FPU instructions 2020-07-30 16:53:33 +02:00