Skip to content

Commit

Permalink
Include exported OpenEXR headers with "" instead of <> (#1097)
Browse files Browse the repository at this point in the history
* Include exported OpenEXR headers with "" instead of <>

Signed-off-by: Cary Phillips <[email protected]>

* Replace #include <IexBaseExc> with "IexBaseExc"

Signed-off-by: Cary Phillips <[email protected]>
  • Loading branch information
cary-ilm authored Jul 19, 2021
1 parent f9bbcac commit c42bb20
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion src/lib/OpenEXR/ImfAttribute.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include "ImfIO.h"
#include "ImfXdr.h"

#include <IexBaseExc.h>
#include "IexBaseExc.h"

#include <typeinfo>
#include <cstring>
Expand Down
2 changes: 1 addition & 1 deletion src/lib/OpenEXRCore/openexr_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#define OPENEXR_CONF_H
#pragma once

#include <OpenEXRConfig.h>
#include "OpenEXRConfig.h"

/// \addtogroup ExportMacros
/// @{
Expand Down
2 changes: 1 addition & 1 deletion src/lib/OpenEXRUtil/ImfDeepImage.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include "ImfImage.h"
#include "ImfUtilExport.h"

#include <ImfTileDescription.h>
#include "ImfTileDescription.h"

OPENEXR_IMF_INTERNAL_NAMESPACE_HEADER_ENTER

Expand Down
2 changes: 1 addition & 1 deletion src/lib/OpenEXRUtil/ImfFlatImage.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include "ImfImage.h"
#include "ImfUtilExport.h"

#include <ImfTileDescription.h>
#include "ImfTileDescription.h"

OPENEXR_IMF_INTERNAL_NAMESPACE_HEADER_ENTER

Expand Down
4 changes: 2 additions & 2 deletions src/lib/OpenEXRUtil/ImfFlatImageChannel.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
#include "ImfUtilExport.h"
#include "ImfImageLevel.h"

#include <ImfPixelType.h>
#include <ImfFrameBuffer.h>
#include "ImfPixelType.h"
#include "ImfFrameBuffer.h"
#include <ImathBox.h>
#include <half.h>

Expand Down
4 changes: 2 additions & 2 deletions src/lib/OpenEXRUtil/ImfImage.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@
#include "ImfNamespace.h"

#include "ImfImageLevel.h"
#include <ImfTileDescription.h>
#include <ImfArray.h>
#include "ImfTileDescription.h"
#include "ImfArray.h"

OPENEXR_IMF_INTERNAL_NAMESPACE_HEADER_ENTER

Expand Down
8 changes: 4 additions & 4 deletions src/lib/OpenEXRUtil/ImfImageChannel.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@

#include "ImfUtilExport.h"

#include <IexBaseExc.h>
#include <ImfPixelType.h>
#include <ImfFrameBuffer.h>
#include <ImfChannelList.h>
#include "ImfPixelType.h"
#include "ImfFrameBuffer.h"
#include "ImfChannelList.h"
#include "IexBaseExc.h"
#include <ImathBox.h>
#include <half.h>

Expand Down
2 changes: 1 addition & 1 deletion src/lib/OpenEXRUtil/ImfImageChannelRenaming.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
//
//----------------------------------------------------------------------------

#include <ImfNamespace.h>
#include "ImfNamespace.h"
#include <string>
#include <map>

Expand Down
2 changes: 1 addition & 1 deletion src/lib/OpenEXRUtil/ImfImageDataWindow.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
//----------------------------------------------------------------------------

#include "ImfUtilExport.h"
#include <ImfNamespace.h>
#include "ImfNamespace.h"
#include <ImathBox.h>

OPENEXR_IMF_INTERNAL_NAMESPACE_HEADER_ENTER
Expand Down

0 comments on commit c42bb20

Please sign in to comment.