You receive a "C4512" error message when Microsoft C/C++ version 7.0 or later is used to compile a C++ source file that uses a class containing a const data member (87638)



The information in this article applies to:

  • Microsoft Visual C++ for Windows, 16-bit edition 1.0
  • Microsoft Visual C++ for Windows, 16-bit edition 1.5
  • Microsoft Visual C++ for Windows, 16-bit edition 1.51
  • Microsoft Visual C++ for Windows, 16-bit edition 1.52
  • Microsoft Visual C++, 32-bit Editions 1.0
  • Microsoft Visual C++, 32-bit Editions 2.0
  • Microsoft Visual C++, 32-bit Editions 2.1
  • Microsoft Visual C++, 32-bit Editions 4.0
  • Microsoft Visual C++, 32-bit Editions 4.1
  • Microsoft Visual C++, 32-bit Editions 4.2
  • Microsoft Visual C++, 32-bit Editions 5.0
  • Microsoft Visual C++, 32-bit Editions 6.0
  • Microsoft Visual C++ 2005 Express Edition
  • Microsoft Visual C++ .NET (2003)
  • Microsoft Visual C++ .NET (2002)

This article was previously published under Q87638

SYMPTOMS

The following warning may be generated when Microsoft C/C++ version 7.0 or later is used to compile a C++ source file that uses a class containing a const data member:
C4512: <class_name> : assignment operator could not be generated
where class_name is the name of the class containing the const data member.

CAUSE

The compiler will generate an assignment operator function for a class that does not define one. This assignment operator is simply a memberwise copy of the data members of an object. Because const data items cannot be modified after initialization, if the class contains a const item, the default assignment operator would not work.

RESOLUTION

The C4512 warning will not prevent the generation of an object module. The warning can be eliminated by any of the following methods:
  • Explicitly define an assignment operator for the class.

    -or-

  • Remove the const data item from the class.

    -or-

  • Use the #pragma warning statement.

MORE INFORMATION

The following sample C++ code demonstrates this situation.

Sample Code

/* Compile options needed: /W4
*/ 

#include <iostream.h>
// In Visual C++ 2005, you shoul add this "#include "stdafx.h"" in.
class base
{
   const int a;

public:
   base(int val = 0) : a(val) {}
   int get_a(void) { return a; }
};

void main()
{
   base first;
   base second(5);

   cout <<
   "First = " <<
   first.get_a() <<
   '\n';

   cout <<
   "Second = " <<
   second.get_a() <<
   '\n';
}
				

Modification Type:MajorLast Reviewed:1/9/2006
Keywords:kbCompiler kbCPPonly kbprb KB87638 kbAudDeveloper