remove the unused outstring method

This commit is contained in:
Stephen Birarda 2013-03-18 16:20:39 -07:00
parent 158270f20d
commit 6a7b40629c
2 changed files with 0 additions and 7 deletions

View file

@ -82,12 +82,6 @@ void render_world_box()
glEnd();
}
void outstring(char * string, int length) {
char out[length];
memcpy(out, string, length);
std::cout << out << "\n";
}
double diffclock(timeval *clock1,timeval *clock2)
{
double diffms = (clock2->tv_sec - clock1->tv_sec) * 1000.0;

View file

@ -14,7 +14,6 @@
float azimuth_to(glm::vec3 head_pos, glm::vec3 source_pos);
float angle_to(glm::vec3 head_pos, glm::vec3 source_pos, float render_yaw, float head_yaw);
void outstring(char * string, int length);
float randFloat();
void render_world_box();
void render_vector(glm::vec3 * vec);