1. Home
  2. UE5 Compilation Errors
  3. UE5 C++ Compilation Error...
  4. C2872: ‘Identifier’ – Ambiguous Symbol in UE5

C2872: ‘Identifier’ – Ambiguous Symbol in UE5

What It Means & How to Fix It


🧠 Why You’re Seeing This Error

C2872 means that multiple declarations of a symbol exist, and the compiler doesn’t know which one you meant. It’s a namespace collision issue — and in UE5, this usually means two different APIs define the same name (like uint8, Text, Vector, etc.).


💥 Example Error Message

error C2872: 'Vector': ambiguous symbol

🛠️ Example Code

using namespace UnrealNamespace;
using namespace MathLibrary;

Vector Position; // ❌ C2872: Which Vector do you mean?

✅ How to Fix C2872 in UE5 – Step-by-Step


✔️ 1. Use Fully Qualified Names

Be explicit about which version of the symbol you want.

Fix:

FVector Position;         // ✅ Unreal's FVector
MathLibrary::Vector V2; // ✅ Another library’s Vector

✔️ 2. Avoid Using using namespace in Headers

Putting using namespace in a .h file pollutes global scope and increases the risk of conflicts — especially in UE5 projects that use many modules.


✔️ 3. Use typedefs or using to Rename If Needed

namespace ThirdParty {
class Vector { ... };
}

using TPVector = ThirdParty::Vector;
TPVector V; // ✅ Avoids namespace collision

✅ Summary: How to Fix C2872 in UE5

CauseFix Example
Multiple types with same nameUse FVector, ThirdParty::Vector, etc.
using namespace conflictAvoid globally; use fully qualified names
Typedef to renameUse using MyVector = Namespace::Vector;
Was this article helpful to you? Yes No

How can we help?