Small compilation fixes

This commit is contained in:
Guilhem Lavaux 2009-11-01 11:21:14 -06:00
parent 6422e08208
commit bab3c3b111
2 changed files with 4 additions and 3 deletions

View File

@ -1,4 +1,5 @@
#include <cstdlib> #include <cstdlib>
#include <cstdio>
#include <cstring> #include <cstring>
#include "miniargs.hpp" #include "miniargs.hpp"
#include <iostream> #include <iostream>

View File

@ -90,9 +90,9 @@ namespace CosmoTool {
Cell *getNearestNeighbour(const coords& x); Cell *getNearestNeighbour(const coords& x);
void getNearestNeighbours(const coords& x, uint32_t N, void getNearestNeighbours(const coords& x, uint32_t NumCells,
Cell **cells); Cell **cells);
void getNearestNeighbours(const coords& x, uint32_t N, void getNearestNeighbours(const coords& x, uint32_t NumCells,
Cell **cells, Cell **cells,
CoordType *distances); CoordType *distances);
@ -114,7 +114,7 @@ namespace CosmoTool {
Cell **sortingHelper; Cell **sortingHelper;
Node *buildTree(Cell **cell0, Node *buildTree(Cell **cell0,
uint32_t N, uint32_t NumCells,
uint32_t depth, uint32_t depth,
coords minBound, coords minBound,
coords maxBound); coords maxBound);