summaryrefslogtreecommitdiff
path: root/Examples/d/extend/example.h
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/d/extend/example.h')
-rw-r--r--Examples/d/extend/example.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Examples/d/extend/example.h b/Examples/d/extend/example.h
index 7ad93fbc1..7a8c04c33 100644
--- a/Examples/d/extend/example.h
+++ b/Examples/d/extend/example.h
@@ -14,7 +14,7 @@ public:
virtual std::string getTitle() { return getPosition() + " " + getName(); }
virtual std::string getName() { return name; }
virtual std::string getPosition() const { return "Employee"; }
- virtual ~Employee() { printf("~Employee() @ %p\n", this); }
+ virtual ~Employee() { printf("~Employee() @ %p\n", (void *)this); }
};