Remove some unused love.physics Body methods, and clean up a bit of code.

This commit is contained in:
Alex Szpakowski
2019-01-03 20:36:47 -04:00
parent 19890a65c3
commit a7d0c02058
5 changed files with 4 additions and 30 deletions
+2 -2
View File
@@ -56,7 +56,7 @@ public:
public:
SharedString(const char *string, size_t len)
: len(len)
: len(len)
{
str = new char[len+1];
memcpy(str, string, len);
@@ -72,7 +72,7 @@ public:
public:
SharedTable(std::vector<std::pair<Variant, Variant>> *table)
: table(table)
: table(table)
{
}