edit ZMainHead.H

This commit is contained in:
2021-03-04 16:27:38 +09:00
parent 943473ef50
commit e00d040a9d
2 changed files with 8 additions and 1 deletions

View File

@ -1197,6 +1197,13 @@ namespace ZNsMain
■ template 인수가 Type11 까지 있음에 주의한다. 그러면 Type10 까지 전문화할 수 있는 것이다.
-- 2015-02-16 21:20:00
단, template 인수는 2개부터가 유효하다.
typedef ZtStTuple<int> CTupleInt1 는 오류다.
typedef ZtStTuple<int, int> CTupleInt2 는 정상이다.
상식적으로도 ZtStTuple<int> 으로 쓸 일은 없다. -- 2021-03-04 16:27
//////////////////////////////////////////////////////////////////////////////////////////*/