mirror of
https://github.com/overte-org/overte.git
synced 2025-04-16 01:57:57 +02:00
fix eve's use of the now disallowed copy constructor
This commit is contained in:
parent
c26a05ff97
commit
7e766eb351
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ int main(int argc, const char* argv[]) {
|
|||
pthread_create(&receiveAgentDataThread, NULL, receiveAgentData, NULL);
|
||||
|
||||
// create an AvatarData object, "eve"
|
||||
AvatarData eve = AvatarData();
|
||||
AvatarData eve;
|
||||
|
||||
// move eve away from the origin
|
||||
// pick a random point inside a 10x10 grid
|
||||
|
|
Loading…
Reference in a new issue