enable and apply clang-format to a whole bunch of small .cpp files in src/

This commit is contained in:
Axel Kohlmeyer
2023-03-25 09:59:25 -04:00
parent 22a1cf935e
commit 8cd34af4f0
38 changed files with 604 additions and 645 deletions

View File

@ -16,8 +16,7 @@
#include "error.h"
#if defined(LMP_INTEL) && \
((defined(__INTEL_COMPILER) || defined(__INTEL_LLVM_COMPILER)))
#if defined(LMP_INTEL) && ((defined(__INTEL_COMPILER) || defined(__INTEL_LLVM_COMPILER)))
#ifndef LMP_INTEL_NO_TBB
#define LMP_USE_TBB_ALLOCATOR
#include "tbb/scalable_allocator.h"
@ -127,6 +126,5 @@ void Memory::sfree(void *ptr)
void Memory::fail(const char *name)
{
error->one(FLERR,"Cannot create/grow a vector/array of "
"pointers for {}",name);
error->one(FLERR,"Cannot create/grow a vector/array of pointers for {}",name);
}