-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprec.h
31 lines (27 loc) · 807 Bytes
/
prec.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* Copyright 2011 Pyarelal Knowles, under GNU LGPL (see LICENCE.txt) */
//more notes than warnings. waste of time to fix
#if defined(WIN32) || defined(_WIN32) || defined(_WIN64)
#pragma warning(disable: 4244) //obvious conversion from a to b. if I didn't want to do it I wouldn't have typed it, honestly
#pragma warning(disable: 4305) //obvious truncation from a to b
#endif
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <memory.h>
#include <string.h>
#include <math.h>
#include <iostream>
#include <fstream>
#include <ostream>
#include <sstream>
#include <string>
#include <map>
#include <set>
#include <stack>
#include <list>
#include <vector>
#include <queue>
#include <iomanip>
#include <algorithm>
//#include <tr1/memory>
#include "includegl.h"