aboutsummaryrefslogtreecommitdiff
path: root/Source/WarpXWrappers.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WarpXWrappers.cpp')
-rw-r--r--Source/WarpXWrappers.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/WarpXWrappers.cpp b/Source/WarpXWrappers.cpp
index 87faac93b..198cd818d 100644
--- a/Source/WarpXWrappers.cpp
+++ b/Source/WarpXWrappers.cpp
@@ -357,13 +357,13 @@ extern "C"
warpx.MoveWindow (true);
}
- void warpx_EvolveE (double dt, int dttype) {
+ void warpx_EvolveE (double dt) {
WarpX& warpx = WarpX::GetInstance();
- warpx.EvolveE (dt, static_cast<DtType>(dttype));
+ warpx.EvolveE (dt);
}
- void warpx_EvolveB (double dt, int dttype) {
+ void warpx_EvolveB (double dt) {
WarpX& warpx = WarpX::GetInstance();
- warpx.EvolveB (dt, static_cast<DtType>(dttype));
+ warpx.EvolveB (dt);
}
void warpx_FillBoundaryE () {
WarpX& warpx = WarpX::GetInstance();