diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-04-25 23:04:24 -0400 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-26 10:27:18 +0200 |
commit | 519030e688dd7075a7cd9f14dd6fb9e210b5a689 (patch) | |
tree | 0e269a27661fea619ab07a533e0c1fa195c3c671 | |
parent | b9531d8e11d344d9840f2414e3c610cd0c816671 (diff) | |
download | UXP-519030e688dd7075a7cd9f14dd6fb9e210b5a689.tar UXP-519030e688dd7075a7cd9f14dd6fb9e210b5a689.tar.gz UXP-519030e688dd7075a7cd9f14dd6fb9e210b5a689.tar.lz UXP-519030e688dd7075a7cd9f14dd6fb9e210b5a689.tar.xz UXP-519030e688dd7075a7cd9f14dd6fb9e210b5a689.zip |
Issue #80 - Resolve issues with compiling on insane gcc configurations with no optimizations in dom/
-rw-r--r-- | dom/canvas/WebGLExtensions.h | 2 | ||||
-rw-r--r-- | dom/canvas/WebGLFramebuffer.h | 2 | ||||
-rw-r--r-- | dom/canvas/WebGLVertexAttribData.cpp | 1 | ||||
-rw-r--r-- | dom/crypto/WebCryptoThreadPool.cpp | 1 |
4 files changed, 4 insertions, 2 deletions
diff --git a/dom/canvas/WebGLExtensions.h b/dom/canvas/WebGLExtensions.h index 7b6b6b54b..595d1c948 100644 --- a/dom/canvas/WebGLExtensions.h +++ b/dom/canvas/WebGLExtensions.h @@ -8,7 +8,7 @@ #include "mozilla/AlreadyAddRefed.h" #include "nsWrapperCache.h" -#include "WebGLObjectModel.h" +#include "WebGLContext.h" #include "WebGLTypes.h" namespace mozilla { diff --git a/dom/canvas/WebGLFramebuffer.h b/dom/canvas/WebGLFramebuffer.h index ac457c098..53e01dfe7 100644 --- a/dom/canvas/WebGLFramebuffer.h +++ b/dom/canvas/WebGLFramebuffer.h @@ -12,7 +12,7 @@ #include "mozilla/WeakPtr.h" #include "nsWrapperCache.h" -#include "WebGLObjectModel.h" +#include "WebGLContext.h" #include "WebGLRenderbuffer.h" #include "WebGLStrongTypes.h" #include "WebGLTexture.h" diff --git a/dom/canvas/WebGLVertexAttribData.cpp b/dom/canvas/WebGLVertexAttribData.cpp index b5aee18e5..cea78eb14 100644 --- a/dom/canvas/WebGLVertexAttribData.cpp +++ b/dom/canvas/WebGLVertexAttribData.cpp @@ -7,6 +7,7 @@ #include "GLContext.h" #include "WebGLBuffer.h" +#include "WebGLContext.h" namespace mozilla { diff --git a/dom/crypto/WebCryptoThreadPool.cpp b/dom/crypto/WebCryptoThreadPool.cpp index 000e42d42..a2b8e6239 100644 --- a/dom/crypto/WebCryptoThreadPool.cpp +++ b/dom/crypto/WebCryptoThreadPool.cpp @@ -9,6 +9,7 @@ #include "mozilla/Services.h" #include "mozilla/StaticPtr.h" #include "nsComponentManagerUtils.h" +#include "nsContentUtils.h" #include "nsNSSComponent.h" #include "nsString.h" #include "nsXPCOMCIDInternal.h" |