Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
63fd503c
Commit
63fd503c
authored
Aug 05, 2009
by
Oswald Buddenhagen
Browse files
fix compile the proper way
older gcc does not automatically make nested classes of a friend class friends as well.
parent
1b0fbbff
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/shared/proparser/profileevaluator.h
View file @
63fd503c
...
...
@@ -42,6 +42,7 @@ QT_BEGIN_NAMESPACE
class
ProFileEvaluator
{
class
Private
;
public:
// This struct is from qmake, but we are not using everything.
...
...
@@ -77,8 +78,9 @@ public:
//QString pro_ext;
//QString res_ext;
//
private:
private:
friend
class
ProFileEvaluator
;
friend
class
ProFileEvaluator
::
Private
;
static
QString
field_sep
;
// Just a cache for quick construction
QHash
<
QString
,
QStringList
>
cache_valuemap
;
// Cached results of .qmake.cache
QHash
<
QString
,
QStringList
>
base_valuemap
;
// ~ and qmake.conf and default_pre.prf
...
...
@@ -127,7 +129,6 @@ public:
virtual
void
fileMessage
(
const
QString
&
msg
);
// error() and message() from .pro file
private:
class
Private
;
Private
*
d
;
// This doesn't help gcc 3.3 ...
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment