在Visual studio中新建了两个c++源文件和一个头文件,分别是main.cpp
#define _CRT_SECURE_NO_WARNINGS 1
#include <iostream>
#include "Log.h"
int main()
{
InitLog();
Log("Hello World!");
std::cin.get();
}
Log.cpp
#define _CRT_SECURE_NO_WARNINGS 1
#include <iostream>
void InitLog()
{
Log("Initializing Log");
}
void Log(const char* message)
{
std::cout << message << std::endl;
}
Log.h
#pragma once
void Log(const char* message);
void InitLog();
其中主函数一直显示错误信息
作为新手,我不是很清楚,我正常引用了头文件为什么会报错,求大佬解答一下
可以说明一下你的 main.cpp 、 Log.cpp 、 Log.h 的路径吗?