LLVM Bugzilla is read-only and represents the historical archive of all LLVM issues filled before November 26, 2021. Use github to submit LLVM bugs

Bug 32313 - lib/xray/tests/unit/xray_fdr_log_printer_tool.cc should include <functional>
Summary: lib/xray/tests/unit/xray_fdr_log_printer_tool.cc should include <functional>
Status: RESOLVED FIXED
Alias: None
Product: XRay
Classification: Unclassified
Component: Compiler instrumentation (show other bugs)
Version: unspecified
Hardware: PC Linux
: P enhancement
Assignee: Dean Michael Berris
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-03-16 08:48 PDT by octoploid
Modified: 2017-03-16 19:52 PDT (History)
1 user (show)

See Also:
Fixed By Commit(s):


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description octoploid 2017-03-16 08:48:48 PDT
building with gcc trunk shows:

/home/markus/llvm/projects/compiler-rt/lib/xray/tests/unit/xray_fdr_log_printer_tool.cc: In function ‘int main(int, char**)’:
/home/markus/llvm/projects/compiler-rt/lib/xray/tests/unit/xray_fdr_log_printer_tool.cc:284:30: error: ‘function’ is not a member of ‘std’
   std::map<std::string, std::function<void(std::istream &)>> TopLevelRecordMap;
                              ^~~~~~~~
/home/markus/llvm/projects/compiler-rt/lib/xray/tests/unit/xray_fdr_log_printer_tool.cc:284:30: note: suggested alternative: ‘is_function’
   std::map<std::string, std::function<void(std::istream &)>> TopLevelRecordMap;
                              ^~~~~~~~
                              is_function
/home/markus/llvm/projects/compiler-rt/lib/xray/tests/unit/xray_fdr_log_printer_tool.cc:284:30: error: ‘function’ is not a member of ‘std’
/home/markus/llvm/projects/compiler-rt/lib/xray/tests/unit/xray_fdr_log_printer_tool.cc:284:30: note: suggested alternative: ‘is_function’
   std::map<std::string, std::function<void(std::istream &)>> TopLevelRecordMap;
                              ^~~~~~~~
                              is_function
/home/markus/llvm/projects/compiler-rt/lib/xray/tests/unit/xray_fdr_log_printer_tool.cc:284:59: error: template argument 2 is invalid
   std::map<std::string, std::function<void(std::istream &)>> TopLevelRecordMap;
                                                           ^~
/home/markus/llvm/projects/compiler-rt/lib/xray/tests/unit/xray_fdr_log_printer_tool.cc:284:59: error: template argument 4 is invalid
...

diff --git a/lib/xray/tests/unit/xray_fdr_log_printer_tool.cc b/lib/xray/tests/unit/xray_fdr_log_printer_tool.cc
index a4d05f200de5..6e209809e346 100644
--- a/lib/xray/tests/unit/xray_fdr_log_printer_tool.cc
+++ b/lib/xray/tests/unit/xray_fdr_log_printer_tool.cc
@@ -17,6 +17,7 @@
 #include <algorithm>
 #include <array>
 #include <cstdlib>
+#include <functional>
 #include <iostream>
 #include <map>
 #include <sstream>

fixes the issue.
Comment 1 Dean Michael Berris 2017-03-16 19:22:09 PDT
Thanks for the report, this should be easy enough to fix.
Comment 2 Dean Michael Berris 2017-03-16 19:52:05 PDT
Should be fixed in r298037 (https://reviews.llvm.org/rL298037)