~ubuntu-branches/ubuntu/trusty/bmagic/trusty

« back to all changes in this revision

Viewing changes to tests/perf/perf.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Roberto C. Sanchez
  • Date: 2011-03-03 12:22:16 UTC
  • mfrom: (4.1.8 sid)
  • Revision ID: james.westby@ubuntu.com-20110303122216-qll5migewxnxe3s5
Tags: 3.7.0-1
* New upstream release (Closes: #615929)
* Update to Standards-Version 3.9.1 (no changes)
* Specify Debian source format as '3.0 (quilt)'

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
OTHER DEALINGS IN THE SOFTWARE.
22
22
*/
23
23
 
 
24
#include <cstdio>
24
25
#include <bitset>
25
26
#include <iostream>
26
27
#include <time.h>
32
33
//#define BMSSE42OPT
33
34
//#define BM64OPT
34
35
 
 
36
#ifdef _MSC_VER
 
37
#pragma warning( push )
 
38
#pragma warning( disable : 4996)
 
39
#endif
 
40
 
 
41
 
35
42
#include "bm.h"
36
43
#include "bmalgo.h"
37
44
#include "bmserial.h"
1232
1239
}
1233
1240
 
1234
1241
 
 
1242
#ifdef _MSC_VER
 
1243
#pragma warning( pop )
 
1244
#endif
1235
1245
 
1236
1246
 
1237
1247