aboutsummaryrefslogtreecommitdiff
path: root/c/pl.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/pl.h')
-rw-r--r--c/pl.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/c/pl.h b/c/pl.h
index d4bf18b..00285e0 100644
--- a/c/pl.h
+++ b/c/pl.h
@@ -95,14 +95,6 @@ int Plx(const char* const szMod, const char* const szPred, T... args)
}
/* Call Prolog predicate, ignoring Prolog exceptions. */
-inline int Pl(const char* const szMod, const char* const szPred)
-{
- try {
- return Plx(szMod, szPred);
- } catch (term_t& t) {
- return 0;
- }
-}
template <typename ...T>
int Pl(const char* const szMod, const char* const szPred, T... args)
{