Unexpected end of file error

前端 未结 7 1374
花落未央
花落未央 2020-12-05 09:26

I hope you can help me, cause I have no idea about what\'s going on. I\'m having the following error while trying to add Beecrypt library to my project:

相关标签:
7条回答
  • 2020-12-05 09:57

    The line #include "stdafx.h" must be the first line at the top of each source file, before any other header files are included.

    If what you've shown is the entire .cxx file, then you did forget to include stdafx.h in that file.

    0 讨论(0)
提交回复
热议问题