Skip to content

Commit

Permalink
ofConstants.h: changed c headers to c++ equivalents to fix problems
Browse files Browse the repository at this point in the history
with recent versions of gcc++. Closes openframeworks#231
  • Loading branch information
arturoc committed Sep 24, 2010
1 parent 8dc7a04 commit 6cca73b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions libs/openFrameworks/utils/ofConstants.h
Expand Up @@ -209,15 +209,15 @@ enum ofLogLevel{
#define OF_SERIAL_ERROR -1

// core: ---------------------------
#include <stdio.h>
#include <stdarg.h>
#include <math.h>
#include <time.h>
#include <stdlib.h>
#include <string.h>
#include <cstdio>
#include <cstdarg>
#include <cmath>
#include <ctime>
#include <cstdlib>
#include <string>
#include <iostream>
#include <vector>
#include <string>
#include <cstring>
#include <sstream> //for ostringsream
#include <iomanip> //for setprecision
#include <fstream>
Expand Down

0 comments on commit 6cca73b

Please sign in to comment.