Wiki 페이지 'Coding guidelines' 를 삭제하면 취소할 수 없습니다. 계속 하시겠습니까?
Header file includes shall be grouped by the categories below, with includes within each group being sorted alphabetically, and with empty lines seperating the groups:
gp_config
header, if requiredHeaders from the gplib project shall be included using the quote form of the include
directive.
Headers included conditionally shall be sorted as normal, and have no additional empty lines around them.
#pragma once
#include "gp_config.hpp"
#include "gp/algorithm/foreach.hpp"
#ifndef NO_FP_MATH
#include "gp/math/fp_math.hpp"
#endif
#include "gp/math/integer_math.hpp"
#include <atomic>
#include <type_traits>
#include <cstdint>
Wiki 페이지 'Coding guidelines' 를 삭제하면 취소할 수 없습니다. 계속 하시겠습니까?