compiler-errors Questions
4
Solved
I am having a hard time learning how to loop through a string in Go to do some stuff (specifically, to separate words than contain vowels).
I wrote this code snippet: https://play.golang.org/p/zgDt...
Exeunt asked 24/8, 2016 at 9:5
9
Every time I run my code, I get the following error:
java.lang.RuntimeException: javax.annotation.processing.FilerException: Attempt to recreate a file for type domein.ClubLes_
[javac] at org.ec...
Alton asked 7/5, 2019 at 10:13
5
Solved
I have some C++0x code. I was able to reproduce it below. The code below works fine without -std=c++0x however i need it for my real code.
How do i include strdup in C++0x? with gcc 4.5.2
note i...
Milagrosmilam asked 6/4, 2011 at 22:34
8
I get the following error:
Traceback (most recent call last):
File "C:/Users/aaaa/Desktop/ttttttt.py", line 5, in <module>
import reload
File "C:\Users\aaa\AppData\Local\Programs\Python\P...
Lammergeier asked 21/7, 2017 at 3:16
3
Solved
I have a class member that looks like this
class Controller {
protected:
// other stuff
std::vector<Task<event_t, stackDepth>> taskHandlers;
//some more stuf
}
The Task class is ...
Fluviatile asked 6/7, 2020 at 7:49
5
Solved
I am new to C++. I have some doubts regarding multiple definitions error in C++.
Let's say I have 3 files in a program. One header file and 2 .cpp files. I have included the header file in b...
Jampan asked 20/9, 2013 at 10:7
11
Solved
When I try to run my Unit Test project, I get the following error:
Could not load file or assembly 'ASSEMBLY_NAME, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies...
Phonography asked 3/11, 2011 at 10:38
7
I finally have a Test Case setup for Roboelectric but when I try to run it from Android Studio, get this error:
Task 'testClasses' not found in project 'myExternalProjectName'
Error:Could not exec...
Neau asked 7/4, 2016 at 2:46
3
Solved
I'm trying to find a fix for my problem. After changing my .net 4.0 C# Win Service project to Any CPU/Release build configuration, I am getting this compile time error:
Cannot specify /main if bui...
Noleta asked 19/7, 2010 at 14:8
4
Solved
I am newbie c# , my first try on Visual Studio Code is to show notification on windows 10 using ToastContentBuilder
from Namespace Microsoft.Toolkit.Uwp.Notifications here is my code :
using Micros...
Adz asked 28/4, 2021 at 15:16
5
Solved
I'm been assigned to make a program that gets 100 random integers between 0-25 and store them in an array.
I then have to call upon 2 methods to split the evens and the odds (very typical).
So I tr...
Rubbery asked 18/10, 2012 at 5:38
2
Solved
I have turned on some compiler switches to report more issues in code (e.g. strict null checks). But I get tens of errors in used libraries, e.g.:
[default] xxx/node_modules/@angular/core/src/util...
Poultice asked 26/10, 2016 at 12:37
3
Solved
I am using MacOS Big Sur, and i am trying to cross compile to windows, but the problem is, this "error: linker x86_64-w64-mingw32-gcc not found" prevents me from doing that, here are my c...
Zubkoff asked 25/3, 2022 at 21:18
9
I'm trying to publish my first React Native app in App store and when I'll build in Xcode:
Product > Archive
appears some error, but i already have main.jsbundle
main.jsbundle does not exist. T...
Beall asked 26/8, 2019 at 19:54
9
Solved
so I've been successfully working on my CUDA program on my Linux but I would like to support Windows platform as well. However, I've been struggling with correctly compiling it. I use :
Windows 1...
Cymophane asked 17/6, 2019 at 18:9
12
Solved
I can't run my flutter project on an IOS device.
This is what I got after flutter run. I can't understand why. Please have a look at the error below and tell me how to fix this.
Launching lib/main....
Breaker asked 18/9, 2020 at 3:1
2
Solved
I was trying to install latest stable Ruby versions (3.1.x, 3.2.x) using rvm. However, the rvm install command of any of those versions fails when compiling Ruby. For instance, when trying to run
r...
Marabelle asked 17/8, 2023 at 14:56
12
I've read that this error is because of some settings in the launch.json and tasks.json files. So I deleted them and made new ones, but it gives the same error and wont build and debug. How do I f...
Matrilineal asked 25/10, 2020 at 1:8
4
Solved
I just noticed that an interface cannot be assigned to Record<string, unknown> (playground link):
interface Foo {
foo: number
}
const foo: Foo = { foo: 1 }
const bar: Record<string, unkn...
Transformation asked 19/1, 2021 at 20:48
7
Solved
As an extension to my previous question (IntelliJ can't find depencency when compiling, but can in editor.) which got solved, I now have a new issue which has sprung up.
Within the same packag...
Saunders asked 13/1, 2016 at 22:27
5
Solved
I am stuck for a day now trying to solve this issue I just updated my android studio but when I open the old project it is showing error
Could not resolve all dependencies for configuration
':ap...
Approbate asked 24/4, 2018 at 13:28
3
Solved
when I compile the following files, I've got the error:
ECArgs.h:36:3: error: ‘string’ does not name a type
ECArgs.h:36: ECString value(char c);
Could somebody give me any hints for the error?
...
Palsy asked 4/3, 2013 at 4:6
4
When I type the following in the interactive shell of Haskell on the repl.it website, it works perfectly.
let squareMe x = x * x
let myFruit = ["banana", "apple", "kiwi", "orange"]
But when I ty...
Swane asked 3/10, 2017 at 14:37
5
Solved
I am trying to edit Java files in VSCode, but am encountering a slew of errors from VSCode. For example:
The type java.lang.Object cannot be resolved.
It is indirectly referenced from required .cl...
Immensurable asked 28/9, 2020 at 14:10
29
Solved
I have been struggling with a very weird issue that has suddenly popped up on the latest version of Eclipse Classic (4.2.2).
Everytime I try creating or refactoring a class or subclass in any of m...
Prowel asked 17/6, 2013 at 18:32
1 Next >
© 2022 - 2024 — McMap. All rights reserved.