Skip to content

Commit

Permalink
cmp - clean whitespace changes
Browse files Browse the repository at this point in the history
  • Loading branch information
claudioperez committed Sep 20, 2021
1 parent aebe2ec commit d2303bd
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions SRC/element/TclElementCommands.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1186,7 +1186,8 @@ TclModelBuilderElementCommand(ClientData clientData, Tcl_Interp *interp,
return TCL_ERROR;
}

} else if (strcmp(argv[1], "PFEMElement2DBuble") == 0) {
}
else if (strcmp(argv[1], "PFEMElement2DBuble") == 0) {
ID info;
void *theEle = OPS_PFEMElement2DBubble(info);
if (theEle != 0) {
Expand All @@ -1196,7 +1197,9 @@ TclModelBuilderElementCommand(ClientData clientData, Tcl_Interp *interp,
<<argv[1]<<endln;
return TCL_ERROR;
}
} else if (strcmp(argv[1], "PFEMElement2DMini") == 0) {
}

else if (strcmp(argv[1], "PFEMElement2DMini") == 0) {
ID info;
void *theEle = OPS_PFEMElement2Dmini(info);
if (theEle != 0) {
Expand All @@ -1206,7 +1209,9 @@ TclModelBuilderElementCommand(ClientData clientData, Tcl_Interp *interp,
<<argv[1]<<endln;
return TCL_ERROR;
}
} else if (strcmp(argv[1], "PFEMElement2D") == 0) {
}

else if (strcmp(argv[1], "PFEMElement2D") == 0) {
void *theEle = OPS_PFEMElement2D();
if (theEle != 0) {
theElement = (Element*)theEle;
Expand All @@ -1215,7 +1220,9 @@ TclModelBuilderElementCommand(ClientData clientData, Tcl_Interp *interp,
<<argv[1]<<endln;
return TCL_ERROR;
}
} else if (strcmp(argv[1], "CatenaryCable") == 0) {
}

else if (strcmp(argv[1], "CatenaryCable") == 0) {
void *theEle = OPS_CatenaryCableElement();
if (theEle != 0) {
theElement = (Element*)theEle;
Expand Down

0 comments on commit d2303bd

Please sign in to comment.