Codemod: use #include angle brackets in folly and thrift
[folly.git] / folly / experimental / symbolizer / Dwarf.h
index 3b2615012cddad27e56a2b9d752e485abe7901d8..820dd94ae9f52c670fcb9d603075dab47ec86514 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2013 Facebook, Inc.
+ * Copyright 2014 Facebook, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -21,8 +21,8 @@
 
 #include <boost/variant.hpp>
 
-#include "folly/experimental/symbolizer/Elf.h"
-#include "folly/Range.h"
+#include <folly/experimental/symbolizer/Elf.h>
+#include <folly/Range.h>
 
 namespace folly {
 namespace symbolizer {
@@ -41,9 +41,8 @@ namespace symbolizer {
  * actually support many of the version 4 features (such as VLIW, multiple
  * operations per instruction)
  *
- * Note that the DWARF record parser does not allocate heap memory at all
- * during normal operation (it might in the error case, as throwing exceptions
- * uses the heap).  This is on purpose: you can use the parser from
+ * Note that the DWARF record parser does not allocate heap memory at all.
+ * This is on purpose: you can use the parser from
  * memory-constrained situations (such as an exception handler for
  * std::out_of_memory)  If it weren't for this requirement, some things would
  * be much simpler: the Path class would be unnecessary and would be replaced