I am quite new to C programming, so I apologize if my question is not very clear, but I came across the following problem in Visual Studio:
I'm trying to debug a function in my project, however when I put a breakpoint in it I get the following message -
"The breakpoint will not currently be hit. No symbols have been loaded for this document".
I already checked the proposed solutions in Fixing "The breakpoint will not currently be hit. No symbols have been loaded for this document." , but none of those worked.
I've cleaned, rebuilt, deleted whatever similar files could be causing a problem, but no improvement. All the symbols are also loading properly.
When I call the function in my code I am getting an output although I can't step in, so I opened the Disassembly and instead of my function, let's call it func1()
, there's another function with similar name, _func1()
, and I can step in its assembly, but there's No source file available.
Any ideas how to find out where is _func1()
located or why on the first place my initial function is not accessed?