ssrp
ssrp

Reputation: 1266

wchar_t could not be resolved

I am developing an Android application which uses JNI and native source code for the implementation. In my C source file I have a variable of the type of wchar_t*.

The Eclipse compiler says that the type could not be resolved. I can't find a solution for this error.

Upvotes: 0

Views: 606

Answers (1)

krsteeve
krsteeve

Reputation: 1804

It's an eclipse indexing bug, detailed here.

That page describes some workarounds that you can try...

Its worth noting that this is just an error in the indexing. Your code is likely compiling just fine.

Upvotes: 1

Related Questions