From 55a676e85d2a03e7007d75177e76a789c9711824 Mon Sep 17 00:00:00 2001 From: Aleric Inglewood Date: Sat, 20 Apr 2013 05:03:17 +0200 Subject: [PATCH] Compile warning fix. --- indra/aistatemachine/aistatemachinethread.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/indra/aistatemachine/aistatemachinethread.h b/indra/aistatemachine/aistatemachinethread.h index 9ffd158e7..4d774de17 100644 --- a/indra/aistatemachine/aistatemachinethread.h +++ b/indra/aistatemachine/aistatemachinethread.h @@ -158,6 +158,9 @@ class AIThreadImpl { public: char const* getName(void) const { return mName; } #endif + + protected: + virtual ~AIThreadImpl() { } }; // The base class for statemachine threads.