-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use angle brackets for library includes and clean up include paths
- Loading branch information
Showing
5 changed files
with
22 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
// Copyright 2012-2024 David Robillard <[email protected]> | ||
// SPDX-License-Identifier: ISC | ||
|
||
#include "sratom/sratom.h" | ||
|
||
#include "lv2/atom/atom.h" | ||
#include "lv2/atom/forge.h" | ||
#include "lv2/atom/util.h" | ||
#include "lv2/midi/midi.h" | ||
#include "lv2/urid/urid.h" | ||
#include "serd/serd.h" | ||
#include "sord/sord.h" | ||
#include <sratom/sratom.h> | ||
|
||
#include <lv2/atom/atom.h> | ||
#include <lv2/atom/forge.h> | ||
#include <lv2/atom/util.h> | ||
#include <lv2/midi/midi.h> | ||
#include <lv2/urid/urid.h> | ||
#include <serd/serd.h> | ||
#include <sord/sord.h> | ||
|
||
#include <assert.h> | ||
#include <ctype.h> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
// Copyright 2022 David Robillard <[email protected]> | ||
// SPDX-License-Identifier: ISC | ||
|
||
#include "sratom/sratom.h" // IWYU pragma: keep | ||
#include <sratom/sratom.h> // IWYU pragma: keep | ||
|
||
#ifdef __GNUC__ | ||
__attribute__((const)) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
// Copyright 2012-2016 David Robillard <[email protected]> | ||
// SPDX-License-Identifier: ISC | ||
|
||
#include "lv2/atom/atom.h" | ||
#include "lv2/atom/forge.h" | ||
#include "lv2/atom/util.h" | ||
#include "lv2/midi/midi.h" | ||
#include "lv2/urid/urid.h" | ||
#include "serd/serd.h" | ||
#include "sratom/sratom.h" | ||
#include <lv2/atom/atom.h> | ||
#include <lv2/atom/forge.h> | ||
#include <lv2/atom/util.h> | ||
#include <lv2/midi/midi.h> | ||
#include <lv2/urid/urid.h> | ||
#include <serd/serd.h> | ||
#include <sratom/sratom.h> | ||
|
||
#include <stdarg.h> | ||
#include <stdbool.h> | ||
|