|
-
July 3rd, 2012, 01:18 PM
#1
Running certain code in codeblocks sets off AVG?
Hey, I've recently started to learn C++ and I'm using codeblocks as my IDE, but I keep getting problems with AVG free edition picking up random pieces of code as Trojans ?! I've put an example of some code that sets it off below, and the error message I get. Is there anyway I can set AVG not to trigger with any codeblocks coding I've done? I guess I could tell AVG not to trigger for that folder, if that's even possible? Thanks!
Code:
Code:
#include <iostream>
using namespace std;
class MyClass{
public:
void coolSaying(){
cout << "BUST A MOVE!!" << endl;
}
};
int main()
{
MyClass myObject;
myObject.coolSaying();
return 0;
}
Error I get:
File name: h:\Desktop\C++ projects\classes and objects 1\bin\Debug\classes and projects 1.exe
Threat name: Trojan horse Agent3.BMSZ
Detected on open.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|