Explorar el Código

Remove incorrect `noexcept`

default_compile_flags
vector-of-bool hace 5 años
padre
commit
c9d6907c1c
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  1. +1
    -1
      src/dds/build/plan/compile_file.cpp
  2. +1
    -1
      src/dds/build/plan/compile_file.hpp

+ 1
- 1
src/dds/build/plan/compile_file.cpp Ver fichero

@@ -12,7 +12,7 @@

using namespace dds;

compile_command_info compile_file_plan::generate_compile_command(build_env_ref env) const noexcept {
compile_command_info compile_file_plan::generate_compile_command(build_env_ref env) const {
compile_file_spec spec{_source.path, calc_object_file_path(env)};
spec.enable_warnings = _rules.enable_warnings();
extend(spec.include_dirs, _rules.include_dirs());

+ 1
- 1
src/dds/build/plan/compile_file.hpp Ver fichero

@@ -126,7 +126,7 @@ public:
* Generate a concrete compile command object for this source file for the given build
* environment.
*/
compile_command_info generate_compile_command(build_env_ref) const noexcept;
compile_command_info generate_compile_command(build_env_ref) const;
};

} // namespace dds

Cargando…
Cancelar
Guardar