aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/fft2d
diff options
context:
space:
mode:
authorGravatar Sanjoy Das <sanjoy@google.com>2018-01-24 14:23:02 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-01-24 14:31:28 -0800
commitf8347ceebbad0e06552633fcdf8e63f52246ba62 (patch)
tree44cd5daf8c37ad7d99ca8753c84457c852d0c00c /third_party/fft2d
parent1b0a771d92227c0d31a24d1dbd37d9fa28637e8e (diff)
Remove THIRD_PARTY_ from #include guards
They don't make sense in the open source repository. PiperOrigin-RevId: 183140889
Diffstat (limited to 'third_party/fft2d')
-rw-r--r--third_party/fft2d/fft.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/third_party/fft2d/fft.h b/third_party/fft2d/fft.h
index 252cc01fec..31b4935089 100644
--- a/third_party/fft2d/fft.h
+++ b/third_party/fft2d/fft.h
@@ -15,8 +15,8 @@ limitations under the License.
// Declarations for 1D FFT routines in third_party/fft2d/fft.
-#ifndef THIRD_PARTY_FFT2D_FFT_H__
-#define THIRD_PARTY_FFT2D_FFT_H__
+#ifndef FFT2D_FFT_H__
+#define FFT2D_FFT_H__
#ifdef __cplusplus
extern "C" {
@@ -33,4 +33,4 @@ extern void dfst(int, double *, double *, int *, double *);
}
#endif
-#endif // THIRD_PARTY_FFT2D_FFT_H__
+#endif // FFT2D_FFT_H__