Error.h: No such file or directory

1372
1
Jump to solution
08-11-2017 06:01 AM
DarkRider
New Contributor II

I've updated to arcGIS Qt SDK 100.1.0 on Linux (Ubuntu) and I get the following error message:

Error.h: No such file or directory in the FeatureTableListModel.h

The problem is that it is actually <error.h> in the standard gnu c library instead of <Error.h> (case sensitive). It compiles using <error.h> (i.e. when I change the include in the FeatureTableListModel.h to lower case).

Seems like a bug. Or do I have to consider something else?

0 Kudos
1 Solution

Accepted Solutions
LukeSmallwood
Esri Contributor

Hi, the filename does have an upper case "E" so I think that the line should actually be including like so:

#include "Error.h"

Thanks,

Luke

View solution in original post

0 Kudos
1 Reply
LukeSmallwood
Esri Contributor

Hi, the filename does have an upper case "E" so I think that the line should actually be including like so:

#include "Error.h"

Thanks,

Luke

0 Kudos