Skip to content

Commit

Permalink
Sigh, attempt to guard this test wrt to the gcc version.
Browse files Browse the repository at this point in the history
  • Loading branch information
cjbacchus committed Feb 5, 2021
1 parent 9a75903 commit ca64d7d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion OscLib/OscCalcGeneral.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,12 @@
#pragma GCC diagnostic push
#ifndef __clang__
#pragma GCC diagnostic ignored "-Wmisleading-indentation"
#include "features.h"
#if __GNUC_PREREQ(8,2)
#pragma GCC diagnostic ignored "-Wdeprecated-copy"
#endif
#endif
#include <boost/numeric/ublas/vector.hpp>
#pragma GCC diagnostic ignored "-Wdeprecated-copy"
#include <boost/numeric/ublas/matrix.hpp>
#pragma GCC diagnostic pop

Expand Down

0 comments on commit ca64d7d

Please sign in to comment.