nodiscard Profile picture
Oct 12 5 tweets 2 min read
Rust의 C++대비 장점중 하나가 헤더 인클루드 복잡도가 O(n^2)가 아니라 O(n)인 점이란 이야기를 듣고 (크게 관계는 없지만) 생각난 것:
일단 각 헤더의 타 헤더 인클루드는 self-contained하게 해야 한다고 생각하는데. 컴파일러마다 어떤 순서로 헤더들을 파싱하느냐가 달라질 수 있어서 이걸 잡아내기 어려울때가 있다. 가끔 한 컴파일러에서 빌드가 잘 되다가도 다른 컴파일러에서는 필요한 헤더가 참조가 안되었다고 하는 경우가 이것
아무튼 지금까지는 헤더를 관계상 가장 먼것에서 가까운 것으로 정렬했었는데 그 반대로 하는게 도움이 된다는걸 알게됨.

예를 들어 어떤 헤더가
#include <vector>
#include <same_proj/a.hpp>
이렇게 한 경우 a.hpp에서 <vector>가 필요하지만 인클루드 하지 않아도 컴파일이 될 수도 있음.
이런 우연을 제거하려면 항상
#include <same_proj/a.hpp>
#include <vector>
이런 식으로 가까운것에서 먼것으로
그래서 내가 쓰는 정렬:
0. 같은 프로젝트 private header
1. 같은 플로젝트 public header (이 안에서도 target의 dependency 역순으로)
2. 3rd-party
3. C++ STL
4. C system
이것도 최신 ClangFormat의 IncludeCategories를 잘 주무르면 자동정렬 가능!
clang.llvm.org/docs/ClangForm…

• • •

Missing some Tweet in this thread? You can try to force a refresh
 

Keep Current with nodiscard

nodiscard Profile picture

Stay in touch and get notified when new unrolls are available from this author!

Read all threads

This Thread may be Removed Anytime!

PDF

Twitter may remove this content at anytime! Save it as PDF for later use!

Try unrolling a thread yourself!

how to unroll video
  1. Follow @ThreadReaderApp to mention us!

  2. From a Twitter thread mention us with a keyword "unroll"
@threadreaderapp unroll

Practice here first or read more on our help page!

Did Thread Reader help you today?

Support us! We are indie developers!


This site is made by just two indie developers on a laptop doing marketing, support and development! Read more about the story.

Become a Premium Member ($3/month or $30/year) and get exclusive features!

Become Premium

Don't want to be a Premium member but still want to support us?

Make a small donation by buying us coffee ($5) or help with server cost ($10)

Donate via Paypal

Or Donate anonymously using crypto!

Ethereum

0xfe58350B80634f60Fa6Dc149a72b4DFbc17D341E copy

Bitcoin

3ATGMxNzCUFzxpMCHL5sWSt4DVtS8UqXpi copy

Thank you for your support!

Follow Us on Twitter!

:(