我在Clion中创建了以下文件模板,但是当我尝试创建文件时,它说“无法解析模板”。怎么了?
#include <bits/stdc++.h>
using namespace std;
#define endl "\n"
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
return 0;
}
答案 0 :(得分:1)
模板格式分别在文件的开头和结尾需要#[[和#]]。 更多信息jetbrains.com/help/clion/using-file-and-code-templates.html
感谢@john