diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2011-09-03 22:14:45 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2011-09-03 22:14:45 -0400 |
commit | f116b1f5b8d36e54404b36f1aba1295cbcfc4fdc (patch) | |
tree | f253b6c97a4568d33829b84a4702c7c16ae8322e /src | |
parent | 5bce637a4b92ed083f2c21cff63917cb2849b851 (diff) | |
download | postgresql-f116b1f5b8d36e54404b36f1aba1295cbcfc4fdc.tar.gz postgresql-f116b1f5b8d36e54404b36f1aba1295cbcfc4fdc.zip |
Remove unnecessary and circular #include.
storage/proc.h should not include replication/syncrep.h, especially not
when the latter includes storage/proc.h; but in any case this was a pretty
poor thing from a modular layering standpoint.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/storage/proc.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/include/storage/proc.h b/src/include/storage/proc.h index 8b09b2af642..07e36a14282 100644 --- a/src/include/storage/proc.h +++ b/src/include/storage/proc.h @@ -15,7 +15,6 @@ #define _PROC_H_ #include "access/xlog.h" -#include "replication/syncrep.h" #include "storage/latch.h" #include "storage/lock.h" #include "storage/pg_sema.h" |