Skip to content

Commit a463576

Browse files
committed
pretty code, use <> instead of ""
1 parent 3b2adba commit a463576

File tree

44 files changed

+52
-52
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+52
-52
lines changed

Eigen/Eigen01_Basic/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <array>
44
#include <iostream>
55
#include <numeric>
6-
#include "common/common.hpp"
6+
#include <common/common.hpp>
77

88
using namespace std;
99
using namespace Eigen;

Eigen/Eigen02_LinearEquationSolver/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <Eigen/SVD>
44
#include <array>
55
#include <iostream>
6-
#include "common/common.hpp"
6+
#include <common/common.hpp>
77

88
using namespace std;
99
using namespace Eigen;

Sophus/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <Eigen/Core>
22
#include <iostream>
33
#include <sophus/so3.hpp>
4-
#include "common/common.hpp"
4+
#include <common/common.hpp>
55
#include "unsupported/Eigen/MatrixFunctions"
66

77
using namespace std;

SqliteCpp/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <SQLiteCpp/SQLiteCpp.h>
22
#include <fmt/format.h>
33
#include <iostream>
4-
#include "common/common.hpp"
4+
#include <common/common.hpp>
55

66
using namespace std;
77
using namespace fmt;

VideoProcess/VideoProcess03_FFmpegEncoder/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ project(VideoProcess03_FFmpegEncoder)
44
find_package(TurboJpeg QUIET) # turbojpeg
55
find_package(FFmpeg COMPONENTS avutil avcodec avformat QUIET) # FFmpeg
66

7-
if(${FFmpeg_FOUND})
7+
if(${FFmpeg_FOUND} AND ${TurboJpeg_FOUND})
88
list(APPEND DEPEND_INCLUDES ${FFmpeg_INCLUDE_DIRS} ${TurboJpeg_INCLUDE_DIRS})
99
list(APPEND DEPEND_LIBS ${FFmpeg_LIBRARIES} ${TurboJpeg_LIBRARIES})
1010

VideoProcess/VideoProcess04_FFmpegDecoder/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ project(VideoProcess04_FFmpegDecoder)
44
find_package(TurboJpeg QUIET) # turbojpeg
55
find_package(FFmpeg COMPONENTS avutil avcodec avformat QUIET) # FFmpeg
66

7-
if(${FFmpeg_FOUND})
7+
if(${FFmpeg_FOUND} AND ${TurboJpeg_FOUND})
88
list(APPEND DEPEND_INCLUDES ${FFmpeg_INCLUDE_DIRS} ${TurboJpeg_INCLUDE_DIRS})
99
list(APPEND DEPEND_LIBS ${FFmpeg_LIBRARIES} ${TurboJpeg_LIBRARIES})
1010

algorithm/alg01_DBSCAN/src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include <fstream>
77
#include <iostream>
88
#include "Dbscan.h"
9-
#include "common/common.hpp"
9+
#include <common/common.hpp>
1010

1111
using namespace std;
1212
using namespace fmt;

algorithm/alg02_BinarySearch/src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include <fmt/format.h>
77
#include <algorithm>
88
#include <iostream>
9-
#include "common/common.hpp"
9+
#include <common/common.hpp>
1010

1111
using namespace std;
1212
using namespace fmt;

boost/asio11_ObtainWebPage/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include <istream>
77
#include <string>
88
#include <thread>
9-
#include "common/common.hpp"
9+
#include <common/common.hpp>
1010

1111
using namespace std;
1212
using namespace common;

boost/boost01_FileSystem/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include <boost/filesystem.hpp>
22
#include <iostream>
3-
#include "common/common.hpp"
3+
#include <common/common.hpp>
44

55
using namespace std;
66
using namespace boost::filesystem;

0 commit comments

Comments
 (0)