mirror of
https://github.com/changkun/modern-cpp-tutorial.git
synced 2025-12-17 04:34:40 +03:00
book: fix indent (#236)
This commit is contained in:
@@ -397,8 +397,8 @@ int main() {
|
|||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
|
|
||||||
std::string str = "Hello world.";
|
std::string str = "Hello world.";
|
||||||
std::vector<std::string> v;
|
std::vector<std::string> v;
|
||||||
|
|
||||||
// 将使用 push_back(const T&), 即产生拷贝行为
|
// 将使用 push_back(const T&), 即产生拷贝行为
|
||||||
v.push_back(str);
|
v.push_back(str);
|
||||||
|
|||||||
Reference in New Issue
Block a user