From eb850c53264d83a5b11f79cd13f0d5ece2c34482 Mon Sep 17 00:00:00 2001
From: Axel Kohlmeyer <akohlmey@gmail.com>
Date: Tue, 28 Aug 2018 15:17:31 -0400
Subject: [PATCH] silence compiler warning about unused static function in
 shared include file

---
 src/USER-CGSDK/lj_sdk_common.h           | 2 ++
 src/USER-CGSDK/pair_lj_sdk.cpp           | 1 +
 src/USER-CGSDK/pair_lj_sdk_coul_long.cpp | 1 +
 3 files changed, 4 insertions(+)

diff --git a/src/USER-CGSDK/lj_sdk_common.h b/src/USER-CGSDK/lj_sdk_common.h
index c1f2cf215a..055d6228fc 100644
--- a/src/USER-CGSDK/lj_sdk_common.h
+++ b/src/USER-CGSDK/lj_sdk_common.h
@@ -27,6 +27,7 @@ namespace LJSDKParms {
   // LJ type flags. list of supported LJ exponent combinations
   enum {LJ_NOT_SET=0, LJ9_6, LJ12_4, LJ12_6, NUM_LJ_TYPES};
 
+#if defined(LMP_NEED_FIND_SDK_LJ_TYPE)
   static int find_lj_type(const char *label,
                           const char * const * const list) {
     for (int i=0; i < NUM_LJ_TYPES; ++i)
@@ -34,6 +35,7 @@ namespace LJSDKParms {
 
     return LJ_NOT_SET;
   }
+#endif
 
   static const char * const lj_type_list[] = {"none", "lj9_6", "lj12_4", "lj12_6"};
   static const double lj_prefact[] = {0.0, 6.75,  2.59807621135332, 4.0};
diff --git a/src/USER-CGSDK/pair_lj_sdk.cpp b/src/USER-CGSDK/pair_lj_sdk.cpp
index cbcba7f6b2..d6e755aaab 100644
--- a/src/USER-CGSDK/pair_lj_sdk.cpp
+++ b/src/USER-CGSDK/pair_lj_sdk.cpp
@@ -33,6 +33,7 @@
 #include "memory.h"
 #include "error.h"
 
+#define LMP_NEED_FIND_SDK_LJ_TYPE 1
 #include "lj_sdk_common.h"
 
 using namespace LAMMPS_NS;
diff --git a/src/USER-CGSDK/pair_lj_sdk_coul_long.cpp b/src/USER-CGSDK/pair_lj_sdk_coul_long.cpp
index 1d93363e20..e1be18c6a8 100644
--- a/src/USER-CGSDK/pair_lj_sdk_coul_long.cpp
+++ b/src/USER-CGSDK/pair_lj_sdk_coul_long.cpp
@@ -34,6 +34,7 @@
 #include "memory.h"
 #include "error.h"
 
+#define LMP_NEED_FIND_SDK_LJ_TYPE 1
 #include "lj_sdk_common.h"
 
 using namespace LAMMPS_NS;
-- 
GitLab