Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
azrael417 committed Jan 15, 2015
2 parents d08630c + 0aa5ee2 commit 1ad75c8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions autogen.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/sh

autoreconf -f
4 changes: 2 additions & 2 deletions include/qdp.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@
#include <ostream>
#include <iostream>

#if 1
// NOTE: (master) chroma will compile with this turned off, but holding back.
#if 0
// NOTE: having this off will probably break a bunch of old code.
using namespace std;
using std::iostream;
using std::ostream;
Expand Down
6 changes: 3 additions & 3 deletions include/qdp_io.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#include <map>
#include <list>

#if 0
#if 1
#include <complex>
#endif

Expand Down Expand Up @@ -496,7 +496,7 @@ namespace QDP
BinaryReader& operator>>(BinaryReader& bin, double& input);
BinaryReader& operator>>(BinaryReader& bin, bool& input);

#if 0
#if 1
//! Complex reader
void read(BinaryReader& bin, std::complex<float>& param);
void read(BinaryReader& bin, std::complex<double>& param);
Expand Down Expand Up @@ -1139,7 +1139,7 @@ namespace QDP
BinaryWriter& operator<<(BinaryWriter& bin, double output);
BinaryWriter& operator<<(BinaryWriter& bin, bool output);

#if 0
#if 1
//! Complex writer
void write(BinaryWriter& bin, const std::complex<float>& param);
void write(BinaryWriter& bin, const std::complex<double>& param);
Expand Down
2 changes: 1 addition & 1 deletion other_libs/filedb

0 comments on commit 1ad75c8

Please sign in to comment.