Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
gjs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
102
Issues
102
List
Boards
Labels
Service Desk
Milestones
Merge Requests
18
Merge Requests
18
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GNOME
gjs
Commits
30acf7c6
Commit
30acf7c6
authored
Jul 11, 2020
by
Philip Chimento
🚮
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
build: Fix includes according to latest IWYU config
parent
552df9bf
Pipeline
#197369
passed with stages
in 5 minutes and 5 seconds
Changes
6
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
0 deletions
+8
-0
gi/boxed.h
gi/boxed.h
+1
-0
gi/object.cpp
gi/object.cpp
+2
-0
gi/object.h
gi/object.h
+1
-0
gi/wrapperutils.h
gi/wrapperutils.h
+1
-0
gjs/atoms.h
gjs/atoms.h
+2
-0
gjs/importer.cpp
gjs/importer.cpp
+1
-0
No files found.
gi/boxed.h
View file @
30acf7c6
...
...
@@ -44,6 +44,7 @@
class
BoxedPrototype
;
class
BoxedInstance
;
class
JSTracer
;
namespace
JS
{
class
CallArgs
;
}
...
...
gi/object.cpp
View file @
30acf7c6
...
...
@@ -75,6 +75,8 @@
#include "gjs/mem-private.h"
#include "util/log.h"
class
JSTracer
;
/* This is a trick to print out the sizes of the structs at compile time, in
* an error message. */
// template <int s> struct Measure;
...
...
gi/object.h
View file @
30acf7c6
...
...
@@ -53,6 +53,7 @@
#include "util/log.h"
class
GjsAtoms
;
class
JSTracer
;
namespace
JS
{
class
CallArgs
;
}
...
...
gi/wrapperutils.h
View file @
30acf7c6
...
...
@@ -54,6 +54,7 @@
struct
JSFunctionSpec
;
struct
JSPropertySpec
;
class
JSTracer
;
GJS_JSAPI_RETURN_CONVENTION
bool
gjs_wrapper_to_string_func
(
JSContext
*
cx
,
JSObject
*
this_obj
,
...
...
gjs/atoms.h
View file @
30acf7c6
...
...
@@ -33,6 +33,8 @@
#include "gjs/macros.h"
class
JSTracer
;
// clang-format off
#define FOR_EACH_ATOM(macro) \
macro(code, "code") \
...
...
gjs/importer.cpp
View file @
30acf7c6
...
...
@@ -34,6 +34,7 @@
#include <vector> // for vector
#include <gio/gio.h>
#include <glib-object.h>
#include <glib.h>
#include <js/CallArgs.h>
...
...
Write
Preview
Markdown
is supported
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