Commit d02950f8 authored by 24OI-bot's avatar 24OI-bot
Browse files

style: format markdown files with remark-lint

parent 1b842f01
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -23,9 +23,10 @@ void f(int x) { cnt = x; }
namespace A {
namespace B {
void f() { ... }
}  // namespace A::B
}  // namespace B
void f() {
  B::f();  // 实际访问的是 A::B::f(),由于当前位于命名空间 A 内,所以可以省略前面的 A::
  B::f();  // 实际访问的是 A::B::f(),由于当前位于命名空间 A
           // 内,所以可以省略前面的 A::
}
}  // namespace A