Skip to content

Commit

Permalink
system headers go first
Browse files Browse the repository at this point in the history
  • Loading branch information
zhengxwen committed Mar 30, 2024
1 parent 5f66532 commit aaa253c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/HIBAG.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.

#include "LibHLA.h"
#include <string>
#include <memory>
#include <limits>
Expand All @@ -25,7 +26,6 @@
#include <fstream>
#include <vector>

#include "LibHLA.h"
#include <R.h>
#include <Rdefines.h>
#include <R_ext/Rdynload.h>
Expand Down
4 changes: 2 additions & 2 deletions src/LibHLA.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@


#include "LibHLA.h"
#include <mutex>
#include <algorithm>
#include <R.h>
#include <Rmath.h>
#include <Rinternals.h>
#ifdef length
# undef length
#endif
#include <mutex>
#include <algorithm>
#include <RcppParallel.h>
#include <tbb/parallel_for.h>

Expand Down

0 comments on commit aaa253c

Please sign in to comment.