Fixed autogen cmake warnings. Fixed pytorch requiring c++17.

This commit is contained in:
matlabbe
2023-09-16 14:26:17 -07:00
parent 39dedba93a
commit 97f2b4b65d
16 changed files with 22 additions and 16 deletions

View File

@@ -36,8 +36,8 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <rtabmap/core/optimizer/OptimizerTORO.h>
#ifdef RTABMAP_TORO
#include "toro3d/treeoptimizer3.hh"
#include "toro3d/treeoptimizer2.hh"
#include "toro3d/treeoptimizer3.h"
#include "toro3d/treeoptimizer2.h"
#endif
namespace rtabmap {

View File

@@ -40,7 +40,8 @@
* such as loading, saving, merging constraints, and etc.
**/
#include "posegraph2.hh"
#include "posegraph2.h"
#include <fstream>
#include <sstream>
#include <string>

View File

@@ -43,10 +43,10 @@
#ifndef _POSEGRAPH2_HH_
#define _POSEGRAPH2_HH_
#include "posegraph.hh"
#include "transformation2.hh"
#include <iostream>
#include <vector>
#include "posegraph.h"
#include "transformation2.h"
namespace AISNavigation {

View File

@@ -39,7 +39,8 @@
* such as loading, saving, merging constraints, and etc.
**/
#include "posegraph3.hh"
#include "posegraph3.h"
#include <fstream>
#include <sstream>
#include <string>

View File

@@ -43,10 +43,10 @@
#ifndef _POSEGRAPH3_HH_
#define _POSEGRAPH3_HH_
#include "posegraph.hh"
#include "transformation3.hh"
#include <iostream>
#include <vector>
#include "posegraph.h"
#include "transformation3.h"
typedef unsigned int uint;
#ifndef M_PI

View File

@@ -39,7 +39,8 @@
#include <assert.h>
#include <cmath>
#include "dmatrix.hh"
#include "dmatrix.h"
namespace AISNavigation {

View File

@@ -41,7 +41,8 @@
*
**/
#include "treeoptimizer2.hh"
#include "treeoptimizer2.h"
#include <fstream>
#include <sstream>
#include <string>

View File

@@ -44,7 +44,7 @@
#ifndef _TREEOPTIMIZER2_HH_
#define _TREEOPTIMIZER2_HH_
#include "posegraph2.hh"
#include "posegraph2.h"
namespace AISNavigation {

View File

@@ -41,7 +41,8 @@
*
**/
#include "treeoptimizer3.hh"
#include "treeoptimizer3.h"
#include <fstream>
#include <sstream>
#include <string>

View File

@@ -44,7 +44,7 @@
#ifndef _TREEOPTIMIZER3_HH_
#define _TREEOPTIMIZER3_HH_
#include "posegraph3.hh"
#include "posegraph3.h"
namespace AISNavigation {

View File

@@ -34,9 +34,9 @@
* PURPOSE.
**********************************************************************/
#include "treeoptimizer3.hh"
#include <fstream>
#include <string>
#include "treeoptimizer3.h"
using namespace std;