aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/unstable/cachebase.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unstable/cachebase.h b/src/unstable/cachebase.h
index 66c915f..7a54465 100644
--- a/src/unstable/cachebase.h
+++ b/src/unstable/cachebase.h
@@ -224,13 +224,13 @@ namespace Bu
224 obtype &operator*() 224 obtype &operator*()
225 { 225 {
226 bind(); 226 bind();
227 return pData; 227 return *pData;
228 } 228 }
229 229
230 const obtype &operator*() const 230 const obtype &operator*() const
231 { 231 {
232 bind(); 232 bind();
233 return pData; 233 return *pData;
234 } 234 }
235 235
236 obtype *operator->() 236 obtype *operator->()