Skip to content

Commit

Permalink
Left alignment for both pointer and reference
Browse files Browse the repository at this point in the history
  • Loading branch information
EZoni committed Feb 21, 2025
1 parent 9e93f3b commit dc6e173
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .clang-format
Original file line number Diff line number Diff line change
Expand Up @@ -199,10 +199,10 @@ PenaltyBreakTemplateDeclaration: 10
PenaltyExcessCharacter: 1000000
PenaltyIndentedWhitespace: 0
PenaltyReturnTypeOnItsOwnLine: 60
PointerAlignment: Right
PointerAlignment: Left
PPIndentWidth: -1
QualifierAlignment: Leave
ReferenceAlignment: Middle
ReferenceAlignment: Pointer
ReflowComments: true
RemoveBracesLLVM: false
RemoveParentheses: Leave
Expand Down
4 changes: 2 additions & 2 deletions Source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
#include <AMReX_Print.H>

int
main (int argc, char *argv[]) {
main (int argc, char* argv[]) {
warpx::initialization::initialize_external_libraries(argc, argv);
{
WARPX_PROFILE_VAR("main()", pmain);

auto timer = ablastr::utils::timer::Timer{};
timer.record_start_time();

auto & warpx = WarpX::GetInstance();
auto& warpx = WarpX::GetInstance();
warpx.InitData();
warpx.Evolve();
const auto is_warpx_verbose = warpx.Verbose();
Expand Down

0 comments on commit dc6e173

Please sign in to comment.