python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Compiler errors when downloading from Bitbucket
For some reason whenever pull code to my work PC via SourceTree and open the project up in unity I am getting errors like this:
Assets\Scripts\InteractiveMapItem.cs(7,14): error CS0246: The type or n...
Jamie C.
Votes: 0
Answers: 0
The element type 'List<DropdownMenuItem<double>>' can't be assigned to the list type 'DropdownMenuItem<double>'
I'm having a problem when ı try to automatize my Items which is a part of DropDownButton.
Every time ı try to execute the function below ı get this error:The element type 'List<DropdownMenuItem>...
D. S. Shatner
Votes: 0
Answers: 2
go 1.18 generic compile error when use maps.Copy on map with struct key
I implemented a Set based on generic, and everything ok until i use struct as Set element instead of base type. I got an compliation error.
go version: go version go1.18 windows/amd64
Below code is fa...
user6426001
Votes: 0
Answers: 1
How to forward declare a template function in global or namespace with default argument?
template<typename T> void foo (T t, int i = 0); // declaration
int main () { foo(1, 0); } // error!!
template<typename T> void foo (T t, int i = 0) {} // definition
Above is a minimal ...
iammilind
Votes: 0
Answers: 1