From 75e12e200451275b695ad151c3291d87b331c474 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Wed, 2 Apr 2025 17:11:17 -0400 Subject: [PATCH] add missing overrides --- src/KOKKOS/pair_mliap_kokkos.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/KOKKOS/pair_mliap_kokkos.h b/src/KOKKOS/pair_mliap_kokkos.h index ca21b39dc0..cbef6e5966 100644 --- a/src/KOKKOS/pair_mliap_kokkos.h +++ b/src/KOKKOS/pair_mliap_kokkos.h @@ -42,16 +42,16 @@ public: typedef ArrayTypes AT; PairMLIAPKokkos(class LAMMPS*); - ~PairMLIAPKokkos(); - void settings(int narg, char ** arg); - void init_style(); + ~PairMLIAPKokkos() override; + void settings(int narg, char ** arg) override; + void init_style() override; - void compute(int, int); + void compute(int, int) override; void e_tally(MLIAPData* data); - void allocate(); + void allocate() override; - void coeff(int narg, char **arg); + void coeff(int narg, char **arg) override; //Outward facing functions to be invoked by the ML layer via MLIAPDataKokkosDevice template