Skip to content

Commit

Permalink
Change header style
Browse files Browse the repository at this point in the history
  • Loading branch information
shubham-kumar1410 committed Jun 8, 2018
1 parent d25b982 commit 9aa289b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 11 deletions.
4 changes: 2 additions & 2 deletions conversions/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ if (BUILD_TESTING)
${test_output_directory}/${CONVERT_TEST_NAME})
endif()

set (SOURCES include/vrep_conversion.h vrep_conversion.cpp)
set (CONVERSION_SOURCES include/vrep_conversion.h vrep_conversion.cpp)
include_directories (include)
add_library (conversion_lib SHARED ${SOURCES})
add_library (conversion_lib SHARED ${CONVERSION_SOURCES})
target_link_libraries( conversion_lib ${MRPT_LIBS} )
4 changes: 2 additions & 2 deletions conversions/include/vrep_conversion.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#ifndef VREP_CONVERSION_H
#define VREP_CONVERSION_H

#include <stdint.h>
#include <string>
#include <cstdint>

This comment has been minimized.

Copy link
@bergercookie

bergercookie Jun 8, 2018

Collaborator

👍

#include <cstring>

namespace mrpt::obs
{
Expand Down
6 changes: 3 additions & 3 deletions conversions/vrep_conversion.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <cstring>
#include "mrpt/obs/CObservation2DRangeScan.h"
#include "vrep_conversion.h"
Expand Down
1 change: 0 additions & 1 deletion mrpt_graphslam_2d/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,5 @@ endif()

add_definitions (-DNON_MATLAB_PARSING)
add_definitions (-DMAX_EXT_API_CONNECTIONS=255)
include_directories (${VREP_PATH}/remoteApi ${VREP_PATH}/include)
add_executable(remoteApi_test remoteApi/remoteApi_test.cpp)
target_link_libraries(remoteApi_test vrep_lib pthread rt conversion_lib)
6 changes: 3 additions & 3 deletions mrpt_graphslam_2d/remoteApi/remoteApi_test.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <cstring>
#include "mrpt/obs/CObservation2DRangeScan.h"
#include "mrpt/obs/CObservationOdometry.h"
Expand Down

0 comments on commit 9aa289b

Please sign in to comment.