mariadb/storage/mroonga
Vicențiu Ciorbaru 08c852026d Apply clang-tidy to remove empty constructors / destructors
This patch is the result of running
run-clang-tidy -fix -header-filter=.* -checks='-*,modernize-use-equals-default' .

Code style changes have been done on top. The result of this change
leads to the following improvements:

1. Binary size reduction.
* For a -DBUILD_CONFIG=mysql_release build, the binary size is reduced by
  ~400kb.
* A raw -DCMAKE_BUILD_TYPE=Release reduces the binary size by ~1.4kb.

2. Compiler can better understand the intent of the code, thus it leads
   to more optimization possibilities. Additionally it enabled detecting
   unused variables that had an empty default constructor but not marked
   so explicitly.

   Particular change required following this patch in sql/opt_range.cc

   result_keys, an unused template class Bitmap now correctly issues
   unused variable warnings.

   Setting Bitmap template class constructor to default allows the compiler
   to identify that there are no side-effects when instantiating the class.
   Previously the compiler could not issue the warning as it assumed Bitmap
   class (being a template) would not be performing a NO-OP for its default
   constructor. This prevented the "unused variable warning".
2023-02-09 16:09:08 +02:00
..
build
data
lib Apply clang-tidy to remove empty constructors / destructors 2023-02-09 16:09:08 +02:00
mysql-test Merge 10.3 into 10.4 2022-09-13 16:36:38 +03:00
packages
test
tools
udf
vendor/groonga Apply clang-tidy to remove empty constructors / destructors 2023-02-09 16:09:08 +02:00
appveyor.yml
AUTHORS
autogen.sh
ChangeLog
CMakeLists.txt Merge 10.3 into 10.4 2021-08-23 10:44:06 +03:00
config.sh.in
configure.ac
COPYING
gpg_uid
ha_mroonga.cpp Mroonga: GCC 12.2.0 -Og -Wmaybe-uninitialized 2022-10-07 12:49:14 +03:00
ha_mroonga.def
ha_mroonga.hpp Merge 10.3 into 10.4 2020-12-01 19:51:14 +02:00
Makefile.am
mrn_constants.hpp
mrn_err.h
mrn_macro.hpp
mrn_mysql.h Merge 10.2 into 10.3 2019-05-14 17:18:46 +03:00
mrn_mysql_compat.h MDEV-29299 SELECT from table with vcol index reports warning 2022-10-12 20:49:45 +03:00
mrn_table.cpp Merge 10.2 into 10.3 2020-06-02 10:25:11 +03:00
mrn_table.hpp Merge 10.2 into 10.3 2019-05-14 17:18:46 +03:00
mrn_variables.hpp
mrn_version.h.in
NEWS
plugin_version
README
required_groonga_normalizer_mysql_version
required_groonga_version
sources.am
version_full MDEV-7209 mroonga storage engine fails to build on OpenBSD 2021-07-27 20:44:46 +02:00
version_in_hex
version_major
version_micro
version_minor

See doc/locale/en/html/index.html or doc/locale/ja/html/index.html